Mercurial > hg
changeset 19566:54817c774d38
basectx: move dirs from changectx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Mon, 05 Aug 2013 18:41:56 -0500 |
parents | bd1580a9c133 |
children | 49b128e50e84 |
files | mercurial/context.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Mon Aug 05 18:41:43 2013 -0500 +++ b/mercurial/context.py Mon Aug 05 18:41:56 2013 -0500 @@ -142,6 +142,9 @@ def _dirs(self): return scmutil.dirs(self._manifest) + def dirs(self): + return self._dirs + class changectx(basectx): """A changecontext object makes access to data related to a particular changeset convenient. It represents a read-only context already presnt in @@ -403,9 +406,6 @@ if match.bad(fn, _('no such file in rev %s') % self) and match(fn): yield fn - def dirs(self): - return self._dirs - def dirty(self): return False