##// END OF EJS Templates
largefiles: call super class method with proper kwargs to respect API...
Long Vu -
r20177:c5f05740 default
parent child Browse files
Show More
@@ -445,8 +445,8 b' def reposetup(ui, repo):'
445 for f in files
445 for f in files
446 if lfutil.isstandin(f) and f in ctx]))
446 if lfutil.isstandin(f) and f in ctx]))
447 lfcommands.uploadlfiles(ui, self, remote, toupload)
447 lfcommands.uploadlfiles(ui, self, remote, toupload)
448 return super(lfilesrepo, self).push(remote, force, revs,
448 return super(lfilesrepo, self).push(remote, force=force, revs=revs,
449 newbranch)
449 newbranch=newbranch)
450
450
451 def _subdirlfs(self, files, lfiles):
451 def _subdirlfs(self, files, lfiles):
452 '''
452 '''
General Comments 0
You need to be logged in to leave comments. Login now