Show More
@@ -819,6 +819,8 b' class basefilectx(object):' | |||
|
819 | 819 | return self._changectx.phase() |
|
820 | 820 | def phasestr(self): |
|
821 | 821 | return self._changectx.phasestr() |
|
822 | def obsolete(self): | |
|
823 | return self._changectx.obsolete() | |
|
822 | 824 | def manifest(self): |
|
823 | 825 | return self._changectx.manifest() |
|
824 | 826 | def changectx(self): |
@@ -361,6 +361,7 b' def commonentry(repo, ctx):' | |||
|
361 | 361 | 'date': ctx.date(), |
|
362 | 362 | 'extra': ctx.extra(), |
|
363 | 363 | 'phase': ctx.phasestr(), |
|
364 | 'obsolete': ctx.obsolete(), | |
|
364 | 365 | 'branch': nodebranchnodefault(ctx), |
|
365 | 366 | 'inbranch': nodeinbranch(repo, ctx), |
|
366 | 367 | 'branches': nodebranchdict(repo, ctx), |
General Comments 0
You need to be logged in to leave comments.
Login now