##// END OF EJS Templates
basefilectx: move phasestr from filectx
Sean Farley -
r19599:66d83efa default
parent child Browse files
Show More
@@ -507,6 +507,8 b' class basefilectx(object):'
507 return self._changectx.extra()
507 return self._changectx.extra()
508 def phase(self):
508 def phase(self):
509 return self._changectx.phase()
509 return self._changectx.phase()
510 def phasestr(self):
511 return self._changectx.phasestr()
510
512
511 class filectx(basefilectx):
513 class filectx(basefilectx):
512 """A filecontext object makes access to data related to a particular
514 """A filecontext object makes access to data related to a particular
@@ -563,8 +565,6 b' class filectx(basefilectx):'
563 return filectx(self._repo, self._path, fileid=fileid,
565 return filectx(self._repo, self._path, fileid=fileid,
564 filelog=self._filelog)
566 filelog=self._filelog)
565
567
566 def phasestr(self):
567 return self._changectx.phasestr()
568 def manifest(self):
568 def manifest(self):
569 return self._changectx.manifest()
569 return self._changectx.manifest()
570 def changectx(self):
570 def changectx(self):
General Comments 0
You need to be logged in to leave comments. Login now