Mercurial > hg
changeset 44:e825a68d7227
Fix occassional diff bug with manifests
author | mpm@selenic.com |
---|---|
date | Tue, 10 May 2005 00:33:48 -0800 |
parents | 42177b56b949 |
children | f2b2d5daec30 |
files | mercurial/hg.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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()