hgweb_mod: update unidiff() calls and finish e5eedd74e70f job
authorRocco Rutte <pdmef@gmx.net>
Sat, 03 Nov 2007 17:04:42 +0100
changeset 5486 48c22c719f8c
parent 5485 8c0756f7b18b
child 5487 7a64931e2d76
child 5505 8ce2dd9faa71
hgweb_mod: update unidiff() calls and finish e5eedd74e70f job
mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py	Fri Nov 02 14:44:33 2007 -0700
+++ b/mercurial/hgweb/hgweb_mod.py	Sat Nov 03 17:04:42 2007 +0100
@@ -196,17 +196,17 @@
         for f in modified:
             to = c1.filectx(f).data()
             tn = c2.filectx(f).data()
-            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f,
+            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f, f,
                                           opts=diffopts), f, tn)
         for f in added:
             to = None
             tn = c2.filectx(f).data()
-            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f,
+            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f, f,
                                           opts=diffopts), f, tn)
         for f in removed:
             to = c1.filectx(f).data()
             tn = None
-            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f,
+            yield diffblock(mdiff.unidiff(to, date1, tn, date2, f, f,
                                           opts=diffopts), f, tn)
 
     def changelog(self, ctx, shortlog=False):