From d67fece1b741c0aae609436cd83ac0d2c448092c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 21 Dec 2009 03:03:51 +0000 Subject: 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. svn path=/main/trunk/; revision=15125 --- pym/_emerge/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pym/_emerge/actions.py') diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index d14b6c3a1..1d7fdc686 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2566,7 +2566,7 @@ def git_sync_timestamps(settings, portdir): if ec in updated_ec_mtimes: continue ec_path = os.path.join(ec_dir, ec + ".eclass") - current_mtime = long(os.stat(ec_path).st_mtime) + current_mtime = os.stat(ec_path)[stat.ST_MTIME] if current_mtime != ec_mtime: os.utime(ec_path, (ec_mtime, ec_mtime)) updated_ec_mtimes[ec] = ec_mtime -- cgit v1.2.3-1-g7c22