Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.py @ 19612:df54cc67b91b
workingfilectx: inherit from basefilectx instead of filectx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Sun, 11 Aug 2013 23:50:32 -0500 |
parents | bae0493b6dc0 |
children | f354e5cdb788 |
line wrap: on
line diff
--- 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):