workingfilectx: inherit from basefilectx instead of filectx
authorSean Farley <sean.michael.farley@gmail.com>
Sun, 11 Aug 2013 23:50:32 -0500
changeset 19612 df54cc67b91b
parent 19611 bae0493b6dc0
child 19613 4bfd3c7160d9
workingfilectx: inherit from basefilectx instead of filectx
mercurial/context.py
--- a/mercurial/context.py	Sun Aug 11 23:06:10 2013 -0500
+++ b/mercurial/context.py	Sun Aug 11 23:50:32 2013 -0500
@@ -1186,7 +1186,7 @@
     def dirs(self):
         return self._repo.dirstate.dirs()
 
-class workingfilectx(filectx):
+class workingfilectx(basefilectx):
     """A workingfilectx object makes access to data related to a particular
        file in the working directory convenient."""
     def __init__(self, repo, path, filelog=None, workingctx=None):