hgext/notify.py
changeset 3017 47aad3489da8
parent 2889 20b95aef3fe0
child 3096 f422c8265ae5
--- a/hgext/notify.py	Tue Aug 22 12:20:24 2006 -0500
+++ b/hgext/notify.py	Thu Aug 24 15:19:56 2006 -0700
@@ -238,7 +238,7 @@
             return
         fp = templater.stringio()
         prev = self.repo.changelog.parents(node)[0]
-        patch.diff(self.repo, fp, prev, ref)
+        patch.diff(self.repo, prev, ref, fp=fp)
         difflines = fp.getvalue().splitlines(1)
         if maxdiff > 0 and len(difflines) > maxdiff:
             self.sio.write(_('\ndiffs (truncated from %d to %d lines):\n\n') %