--- a/mercurial/context.py Sun Aug 11 22:53:47 2013 -0500
+++ b/mercurial/context.py Sun Aug 11 22:53:56 2013 -0500
@@ -495,6 +495,8 @@
return self._changectx.hex()
def user(self):
return self._changectx.user()
+ def date(self):
+ return self._changectx.date()
class filectx(basefilectx):
"""A filecontext object makes access to data related to a particular
@@ -551,8 +553,6 @@
return filectx(self._repo, self._path, fileid=fileid,
filelog=self._filelog)
- def date(self):
- return self._changectx.date()
def files(self):
return self._changectx.files()
def description(self):