##// END OF EJS Templates
largefiles: remove a mutable default argument...
Pierre-Yves David -
r26344:cd9cc7f3 default
parent child Browse files
Show More
@@ -1172,8 +1172,10 b' def overridesummary(orig, ui, repo, *pat'
1172 finally:
1172 finally:
1173 repo.lfstatus = False
1173 repo.lfstatus = False
1174
1174
1175 def scmutiladdremove(orig, repo, matcher, prefix, opts={}, dry_run=None,
1175 def scmutiladdremove(orig, repo, matcher, prefix, opts=None, dry_run=None,
1176 similarity=None):
1176 similarity=None):
1177 if opts is None:
1178 opts = {}
1177 if not lfutil.islfilesrepo(repo):
1179 if not lfutil.islfilesrepo(repo):
1178 return orig(repo, matcher, prefix, opts, dry_run, similarity)
1180 return orig(repo, matcher, prefix, opts, dry_run, similarity)
1179 # Get the list of missing largefiles so we can remove them
1181 # Get the list of missing largefiles so we can remove them
General Comments 0
You need to be logged in to leave comments. Login now