Mercurial > hg
changeset 3149:ff1ab08e6732
restore filectx.changectx() method
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 22 Sep 2006 15:34:02 -0500 |
parents | adb246ce6736 |
children | a5e4c8172ace |
files | mercurial/context.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Fri Sep 22 18:29:04 2006 +0200 +++ b/mercurial/context.py Fri Sep 22 15:34:02 2006 -0500 @@ -131,6 +131,7 @@ def files(self): return self._changectx.files() def description(self): return self._changectx.description() def manifest(self): return self._changectx.manifest() + def changectx(self): return self._changectx def data(self): return self._filelog.read(self._filenode) def renamed(self): return self._filelog.renamed(self._filenode)