Show More
@@ -821,6 +821,8 class basefilectx(object): | |||
|
821 | 821 | return self._changectx.phasestr() |
|
822 | 822 | def obsolete(self): |
|
823 | 823 | return self._changectx.obsolete() |
|
824 | def instabilities(self): | |
|
825 | return self._changectx.instabilities() | |
|
824 | 826 | def manifest(self): |
|
825 | 827 | return self._changectx.manifest() |
|
826 | 828 | def changectx(self): |
@@ -362,6 +362,7 def commonentry(repo, ctx): | |||
|
362 | 362 | 'extra': ctx.extra(), |
|
363 | 363 | 'phase': ctx.phasestr(), |
|
364 | 364 | 'obsolete': ctx.obsolete(), |
|
365 | 'instabilities': [{"name": i} for i in ctx.instabilities()], | |
|
365 | 366 | 'branch': nodebranchnodefault(ctx), |
|
366 | 367 | 'inbranch': nodeinbranch(repo, ctx), |
|
367 | 368 | 'branches': nodebranchdict(repo, ctx), |
General Comments 0
You need to be logged in to leave comments.
Login now