hgext/mq.py
changeset 4970 30d4d8985dd8
parent 4917 126f527b3ba3
child 5025 7041869a1bf6
child 6041 dd714452c26e
--- a/hgext/mq.py	Sun Jul 22 16:21:49 2007 +0200
+++ b/hgext/mq.py	Sun Jul 22 14:53:57 2007 -0500
@@ -442,7 +442,7 @@
             lock = repo.lock()
             tr = repo.transaction()
             try:
-                ret = self._apply(tr, repo, series, list, update_status,
+                ret = self._apply(repo, series, list, update_status,
                                   strict, patchdir, merge, all_files=all_files)
                 tr.close()
                 self.save_dirty()
@@ -457,7 +457,7 @@
         finally:
             del lock, wlock, tr
 
-    def _apply(self, tr, repo, series, list=False, update_status=True,
+    def _apply(self, repo, series, list=False, update_status=True,
                strict=False, patchdir=None, merge=None, all_files={}):
         # TODO unify with commands.py
         if not patchdir: