summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-12-24 04:01:27 +0000
committerZac Medico <zmedico@gentoo.org>2009-12-24 04:01:27 +0000
commitb71611276db87b7ed83791cafe568e89932ec17a (patch)
treeb180db7d3feb4afc6ac503e40ac386df3f4279b6
parentf281c83e07a05c32baf782bb9d792435f73003ff (diff)
downloadportage-b71611276db87b7ed83791cafe568e89932ec17a.tar.gz
portage-b71611276db87b7ed83791cafe568e89932ec17a.tar.bz2
portage-b71611276db87b7ed83791cafe568e89932ec17a.zip
When integer mtime is desired, use stat_obj[stat.ST_MTIME] instead of the
float st_mtime in order to avoid rounding *up* in some rare cases. (trunk r15126) svn path=/main/branches/2.1.7/; revision=15138
-rw-r--r--pym/portage/cache/flat_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/cache/flat_list.py b/pym/portage/cache/flat_list.py
index bf465efdb..51231a52a 100644
--- a/pym/portage/cache/flat_list.py
+++ b/pym/portage/cache/flat_list.py
@@ -48,7 +48,7 @@ class database(fs_template.FsBased):
raise cache_errors.CacheCorruption(cpv, e)
try:
- d["_mtime_"] = long(os.fstat(myf.fileno()).st_mtime)
+ d["_mtime_"] = os.fstat(myf.fileno())[stat.ST_MTIME]
except OSError as e:
myf.close()
raise cache_errors.CacheCorruption(cpv, e)