diff mercurial/hg.py @ 44:e825a68d7227

Fix occassional diff bug with manifests
author mpm@selenic.com
date Tue, 10 May 2005 00:33:48 -0800
parents 5f87633e1ea2
children 93e868fa0db8
line wrap: on
line diff
--- a/mercurial/hg.py	Tue May 10 00:32:05 2005 -0800
+++ b/mercurial/hg.py	Tue May 10 00:33:48 2005 -0800
@@ -89,7 +89,7 @@
         if self.listcache and len(self.listcache[0]) == len(a):
             return mdiff.diff(self.listcache[1], self.addlist, 1)
         else:
-            return mdiff.diff(a, b)
+            return mdiff.textdiff(a, b)
 
     def add(self, map, transaction, link, p1=None, p2=None):
         files = map.keys()