##// END OF EJS Templates
basefilectx: move user from filectx
Sean Farley -
r19592:1cdb3b3d default
parent child Browse files
Show More
@@ -493,6 +493,8 b' class basefilectx(object):'
493 return self._changectx.node()
493 return self._changectx.node()
494 def hex(self):
494 def hex(self):
495 return self._changectx.hex()
495 return self._changectx.hex()
496 def user(self):
497 return self._changectx.user()
496
498
497 class filectx(basefilectx):
499 class filectx(basefilectx):
498 """A filecontext object makes access to data related to a particular
500 """A filecontext object makes access to data related to a particular
@@ -549,8 +551,6 b' class filectx(basefilectx):'
549 return filectx(self._repo, self._path, fileid=fileid,
551 return filectx(self._repo, self._path, fileid=fileid,
550 filelog=self._filelog)
552 filelog=self._filelog)
551
553
552 def user(self):
553 return self._changectx.user()
554 def date(self):
554 def date(self):
555 return self._changectx.date()
555 return self._changectx.date()
556 def files(self):
556 def files(self):
General Comments 0
You need to be logged in to leave comments. Login now