##// 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 493 return self._changectx.node()
494 494 def hex(self):
495 495 return self._changectx.hex()
496 def user(self):
497 return self._changectx.user()
496 498
497 499 class filectx(basefilectx):
498 500 """A filecontext object makes access to data related to a particular
@@ -549,8 +551,6 b' class filectx(basefilectx):'
549 551 return filectx(self._repo, self._path, fileid=fileid,
550 552 filelog=self._filelog)
551 553
552 def user(self):
553 return self._changectx.user()
554 554 def date(self):
555 555 return self._changectx.date()
556 556 def files(self):
General Comments 0
You need to be logged in to leave comments. Login now