mercurial/filelog.py
changeset 2895 21631c2c09a5
parent 2890 5df3e5cf16bc
child 2898 db397c38005d
--- a/mercurial/filelog.py	Tue Aug 15 16:27:19 2006 -0500
+++ b/mercurial/filelog.py	Tue Aug 15 16:28:00 2006 -0500
@@ -71,7 +71,7 @@
         # for renames, we have to go the slow way
         if self.renamed(node):
             t2 = self.read(node)
-            return t2 == text
+            return t2 != text
 
         return revlog.cmp(self, node, text)