##// END OF EJS Templates
basefilectx: use basectx __str__ instead of duplicating logic...
Sean Farley -
r19660:86ce68c1 default
parent child Browse files
Show More
@@ -456,7 +456,7 b' class basefilectx(object):'
456 456 return False
457 457
458 458 def __str__(self):
459 return "%s@%s" % (self.path(), short(self.node()))
459 return "%s@%s" % (self.path(), self._changectx)
460 460
461 461 def __repr__(self):
462 462 return "<%s %s>" % (type(self).__name__, str(self))
General Comments 0
You need to be logged in to leave comments. Login now