--- a/mercurial/context.py Sun Aug 11 22:54:48 2013 -0500
+++ b/mercurial/context.py Sun Aug 11 22:54:58 2013 -0500
@@ -507,6 +507,8 @@
return self._changectx.extra()
def phase(self):
return self._changectx.phase()
+ def phasestr(self):
+ return self._changectx.phasestr()
class filectx(basefilectx):
"""A filecontext object makes access to data related to a particular
@@ -563,8 +565,6 @@
return filectx(self._repo, self._path, fileid=fileid,
filelog=self._filelog)
- def phasestr(self):
- return self._changectx.phasestr()
def manifest(self):
return self._changectx.manifest()
def changectx(self):