restore filectx.changectx() method
authorMatt Mackall <mpm@selenic.com>
Fri, 22 Sep 2006 15:34:02 -0500
changeset 3149 ff1ab08e6732
parent 3148 adb246ce6736
child 3150 a5e4c8172ace
restore filectx.changectx() method
mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -131,6 +131,7 @@ class filectx(object):
     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)