--- a/hgkw/keyword.py Tue Dec 16 09:58:41 2008 +0100
+++ b/hgkw/keyword.py Thu Mar 05 06:47:41 2009 +0100
@@ -139,7 +139,7 @@
templatefilters.filters['utcdate'] = utcdate
self.ct = cmdutil.changeset_templater(self.ui, self.repo,
- False, '', False)
+ False, None, '', False)
def substitute(self, data, path, ctx, subfunc):
'''Replaces keywords in data with expanded template.'''
@@ -485,10 +485,10 @@
del wlock, lock
# monkeypatches
- def kwpatchfile_init(orig, self, ui, fname, missing=False):
+ def kwpatchfile_init(orig, self, ui, fname, opener, missing=False):
'''Monkeypatch/wrap patch.patchfile.__init__ to avoid
rejects or conflicts due to expanded keywords in working dir.'''
- orig(self, ui, fname, missing)
+ orig(self, ui, fname, opener, missing)
# shrink keywords read from working dir
self.lines = kwt.shrinklines(self.fname, self.lines)