hgext/mq.py
changeset 11211 e43c23d189a5
parent 11199 4b1f4e473c17
child 11216 1abd9442727c
--- a/hgext/mq.py	Fri May 21 22:53:57 2010 +0900
+++ b/hgext/mq.py	Fri May 21 15:22:29 2010 +0200
@@ -2555,10 +2555,10 @@
             return super(mqrepo, self).commit(text, user, date, match, force,
                                               editor, extra)
 
-        def push(self, remote, force=False, revs=None):
+        def push(self, remote, force=False, revs=None, newbranch=False):
             if self.mq.applied and not force and not revs:
                 raise util.Abort(_('source has mq patches applied'))
-            return super(mqrepo, self).push(remote, force, revs)
+            return super(mqrepo, self).push(remote, force, revs, newbranch)
 
         def _findtags(self):
             '''augment tags from base class with patch tags'''