Merge with stable
authorChristian Ebert <blacktrash@gmx.net>
Sat, 11 Jun 2011 15:03:58 +0200
changeset 965 d64b07980755
parent 963 b95f15ba1b1b (current diff)
parent 964 aaafe06aaa5f (diff)
child 967 2bb39e460186
Merge with stable
--- a/hgkw/keyword.py	Thu Jun 02 00:12:10 2011 +0100
+++ b/hgkw/keyword.py	Sat Jun 11 15:03:58 2011 +0200
@@ -595,12 +595,10 @@
                 wlock.release()
 
     # monkeypatches
-    def kwpatchfile_init(orig, self, ui, fname, backend, store, mode, create,
-                         remove, eolmode=None, copysource=None):
+    def kwpatchfile_init(orig, self, ui, gp, backend, store, eolmode=None):
         '''Monkeypatch/wrap patch.patchfile.__init__ to avoid
         rejects or conflicts due to expanded keywords in working dir.'''
-        orig(self, ui, fname, backend, store, mode, create, remove,
-             eolmode, copysource)
+        orig(self, ui, gp, backend, store, eolmode)
         # shrink keywords read from working dir
         self.lines = kwt.shrinklines(self.fname, self.lines)