##// END OF EJS Templates
strip: fix backup command args
super-admin -
r5158:79ec5964 default
parent child Browse files
Show More
@@ -270,7 +270,7 b' class MercurialRepository(BaseRepository'
270 return MercurialDiff(diff)
270 return MercurialDiff(diff)
271
271
272 def strip(self, commit_id, branch=None):
272 def strip(self, commit_id, branch=None):
273 self._remote.strip(commit_id, update=False, backup="none")
273 self._remote.strip(commit_id, update=False, backup=False)
274
274
275 self._remote.invalidate_vcs_cache()
275 self._remote.invalidate_vcs_cache()
276 # clear cache
276 # clear cache
General Comments 0
You need to be logged in to leave comments. Login now