author | Sean Farley <sean.michael.farley@gmail.com> |
Wed, 14 Aug 2013 16:25:17 -0500 | |
changeset 19693 | 56ba14d4bc02 |
parent 19692 | 594f4d2b0ce9 |
child 19694 | ba4c01c34df9 |
--- a/mercurial/context.py Wed Aug 14 16:24:59 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 16:25:17 2013 -0500 @@ -1012,6 +1012,9 @@ phase = max(phase, p.phase()) return phase + def hidden(self): + return False + class workingctx(commitablectx): """A workingctx object makes access to data related to the current working directory convenient. @@ -1038,9 +1041,6 @@ p = p[:-1] return [changectx(self._repo, x) for x in p] - def hidden(self): - return False - def children(self): return []