commitablectx: move date from workingctx
authorSean Farley <sean.michael.farley@gmail.com>
Wed, 14 Aug 2013 16:03:32 -0500
changeset 19677 e11415510352
parent 19676 103525f36337
child 19678 897c2dbc0256
commitablectx: move date from workingctx
mercurial/context.py
--- a/mercurial/context.py	Thu Aug 15 10:57:43 2013 -0500
+++ b/mercurial/context.py	Wed Aug 14 16:03:32 2013 -0500
@@ -963,6 +963,8 @@
 
     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 @@
             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):