# HG changeset patch # User Sean Farley # Date 1376283032 18000 # Node ID df54cc67b91bea97c4fc299241a67aeecf099d00 # Parent bae0493b6dc05ecf08c94aca5ca0431cb39818fc workingfilectx: inherit from basefilectx instead of filectx diff -r bae0493b6dc0 -r df54cc67b91b 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):