diff mercurial/context.py @ 4115:eb0967c6e77b

Use only integer part of mtime in workingfilectx.date(), fixes test-context.py Similar to what is done in dirstate.status() (changeset 882e703eaa94) and has to be removed when Mercurial switches to subsecond granularity.
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 26 Feb 2007 21:57:33 +0100
parents 20af6a2f0b0e
children dbc3846c09a1
line wrap: on
line diff
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -510,7 +510,7 @@ class workingfilectx(filectx):
     def date(self):
         t, tz = self._changectx.date()
         try:
-            return (os.lstat(self._repo.wjoin(self._path)).st_mtime, tz)
+            return (int(os.lstat(self._repo.wjoin(self._path)).st_mtime), tz)
         except OSError, err:
             if err.errno != errno.ENOENT: raise
             return (t, tz)