##// END OF EJS Templates
contexts: improve filectx eq test
Matt Mackall -
r4889:3b081f2a default
parent child Browse files
Show More
@@ -184,7 +184,7 b' class filectx(object):'
184 def __eq__(self, other):
184 def __eq__(self, other):
185 try:
185 try:
186 return (self._path == other._path
186 return (self._path == other._path
187 and self._changeid == other._changeid)
187 and self._fileid == other._fileid)
188 except AttributeError:
188 except AttributeError:
189 return False
189 return False
190
190
General Comments 0
You need to be logged in to leave comments. Login now