Show More
@@ -491,6 +491,8 class basefilectx(object): | |||
|
491 | 491 | return self._filelog.linkrev(self._filerev) |
|
492 | 492 | def node(self): |
|
493 | 493 | return self._changectx.node() |
|
494 | def hex(self): | |
|
495 | return self._changectx.hex() | |
|
494 | 496 | |
|
495 | 497 | class filectx(basefilectx): |
|
496 | 498 | """A filecontext object makes access to data related to a particular |
@@ -547,8 +549,6 class filectx(basefilectx): | |||
|
547 | 549 | return filectx(self._repo, self._path, fileid=fileid, |
|
548 | 550 | filelog=self._filelog) |
|
549 | 551 | |
|
550 | def hex(self): | |
|
551 | return hex(self.node()) | |
|
552 | 552 | def user(self): |
|
553 | 553 | return self._changectx.user() |
|
554 | 554 | def date(self): |
General Comments 0
You need to be logged in to leave comments.
Login now