workingctx: inherit from basectx instead of changectx
authorSean Farley <sean.michael.farley@gmail.com>
Mon, 05 Aug 2013 18:44:18 -0500
changeset 19571 103edf3ed79e
parent 19570 f69ebcb06ce2
child 19572 c19f46b904b9
workingctx: inherit from basectx instead of changectx
mercurial/context.py
--- a/mercurial/context.py	Tue Aug 06 15:10:09 2013 -0500
+++ b/mercurial/context.py	Mon Aug 05 18:44:18 2013 -0500
@@ -810,7 +810,7 @@
             self._copycache[sc2] = copies.pathcopies(c2)
         return self._copycache[sc2]
 
-class workingctx(changectx):
+class workingctx(basectx):
     """A workingctx object makes access to data related to
     the current working directory convenient.
     date - any valid date string or (unixtime, offset), or None.