context: change workingctx str() from . to <node>+

This commit is contained in:
Matt Mackall 2006-10-10 02:11:59 -05:00
parent 285d3e6b86
commit 208002d0f3

View File

@ -330,7 +330,7 @@ class workingctx(changectx):
self._node = None
def __str__(self):
return "."
return str(self._parents[0]) + "+"
def __nonzero__(self):
return True
@ -430,7 +430,7 @@ class workingfilectx(filectx):
return True
def __str__(self):
return "%s@." % self.path()
return "%s@%s" % (self.path(), self._changectx)
def filectx(self, fileid):
'''opens an arbitrary revision of the file without