##// END OF EJS Templates
workingfilectx.cmp: invert boolean return value...
Nicolas Dumazet -
r11538:16fe9880 stable
parent child Browse files
Show More
@@ -932,7 +932,7 b' class workingfilectx(filectx):'
932 932 return (t, tz)
933 933
934 934 def cmp(self, text):
935 return self._repo.wread(self._path) == text
935 return self._repo.wread(self._path) != text
936 936
937 937 class memctx(object):
938 938 """Use memctx to perform in-memory commits via localrepo.commitctx().
General Comments 0
You need to be logged in to leave comments. Login now