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	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)