Use only integer part of mtime in workingfilectx.date(), fixes test-context.py
authorThomas Arendsen Hein <thomas@intevation.de>
Mon, 26 Feb 2007 21:57:33 +0100
changeset 4115 eb0967c6e77b
parent 4114 d5011e347476
child 4116 35b39097c3e6
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.
mercurial/context.py
--- 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)