##// END OF EJS Templates
mq: fix commit prototype
Matt Mackall -
r8711:1b95c6f1 default
parent child Browse files
Show More
@@ -2413,16 +2413,14 b' def reposetup(ui, repo):'
2413 2413 if parent in [s.rev for s in self.mq.applied]:
2414 2414 raise util.Abort(errmsg)
2415 2415
2416 def commit(self, *args, **opts):
2417 if len(args) >= 6:
2418 force = args[5]
2419 else:
2420 force = opts.get('force')
2416 def commit(self, text="", user=None, date=None, match=None,
2417 force=False, editor=False, extra={}):
2421 2418 self.abort_if_wdir_patched(
2422 2419 _('cannot commit over an applied mq patch'),
2423 2420 force)
2424 2421
2425 return super(mqrepo, self).commit(*args, **opts)
2422 return super(mqrepo, self).commit(text, user, date, match, force,
2423 editor, extra)
2426 2424
2427 2425 def push(self, remote, force=False, revs=None):
2428 2426 if self.mq.applied and not force and not revs:
General Comments 0
You need to be logged in to leave comments. Login now