##// END OF EJS Templates
largefiles: simplify check for lack of path arguments...
Martin von Zweigbergk -
r23147:9174863c default
parent child Browse files
Show More
@@ -284,8 +284,7 b' def reposetup(ui, repo):'
284 # Case 1: user calls commit with no specific files or
284 # Case 1: user calls commit with no specific files or
285 # include/exclude patterns: refresh and commit all files that
285 # include/exclude patterns: refresh and commit all files that
286 # are "dirty".
286 # are "dirty".
287 if ((match is None) or
287 if match is None or match.always():
288 (not match.anypats() and not match.files())):
289 # Spend a bit of time here to get a list of files we know
288 # Spend a bit of time here to get a list of files we know
290 # are modified so we can compare only against those.
289 # are modified so we can compare only against those.
291 # It can cost a lot of time (several seconds)
290 # It can cost a lot of time (several seconds)
General Comments 0
You need to be logged in to leave comments. Login now