From: Zac Medico Date: Sun, 13 Dec 2009 03:52:06 +0000 (-0000) Subject: Just use integer mtime if no fractional seconds are found in the search. X-Git-Tag: v2.1.7.14~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=258f09b1e29ee7b2ced583700181d4b02cf4203f;p=portage.git Just use integer mtime if no fractional seconds are found in the search. (trunk r15040) svn path=/main/branches/2.1.7/; revision=15074 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 723c722d3..d9143c4fe 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -7697,7 +7697,10 @@ def movefile(src, dest, newmtime=None, sstat=None, mysettings=None, mtime_str += another_digit digits += 1 break - newmtime = float(mtime_str) + if digits > 0: + newmtime = float(mtime_str) + else: + newmtime = int_mtime os.utime(dest, (newmtime, newmtime)) newmtime = sstat[stat.ST_MTIME]