Mercurial > hg
changeset 19571:103edf3ed79e
workingctx: inherit from basectx instead of changectx
author | Sean Farley <sean.michael.farley@gmail.com> |
---|---|
date | Mon, 05 Aug 2013 18:44:18 -0500 |
parents | f69ebcb06ce2 |
children | c19f46b904b9 |
files | mercurial/context.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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.