##// END OF EJS Templates
largefiles: don't use mutable default argument value...
Pierre-Yves David -
r31410:86dfd31c default
parent child Browse files
Show More
@@ -272,7 +272,9 b' def reposetup(ui, repo):'
272 # contents updated to reflect the hash of their largefile.
272 # contents updated to reflect the hash of their largefile.
273 # Do that here.
273 # Do that here.
274 def commit(self, text="", user=None, date=None, match=None,
274 def commit(self, text="", user=None, date=None, match=None,
275 force=False, editor=False, extra={}):
275 force=False, editor=False, extra=None):
276 if extra is None:
277 extra = {}
276 orig = super(lfilesrepo, self).commit
278 orig = super(lfilesrepo, self).commit
277
279
278 with self.wlock():
280 with self.wlock():
General Comments 0
You need to be logged in to leave comments. Login now