# HG changeset patch # User Sean Farley # Date 2013-08-14 21:03:32 # Node ID e114155103529871c70d1d1ba56ab0adfde116b4 # Parent 103525f36337109aee7def9b219c18666fc9ee6e commitablectx: move date from workingctx diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -963,6 +963,8 @@ class commitablectx(basectx): def user(self): return self._user or self._repo.ui.username() + def date(self): + return self._date class workingctx(commitablectx): """A workingctx object makes access to data related to @@ -990,8 +992,6 @@ class workingctx(commitablectx): p = p[:-1] return [changectx(self._repo, x) for x in p] - def date(self): - return self._date def description(self): return self._text def files(self):