From: Zac Medico Date: Fri, 11 Dec 2009 21:53:23 +0000 (-0000) Subject: Just use integer mtime if no fractional seconds are found in the search. X-Git-Tag: v2.2_rc59~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c0172f8259cca56ea9dd1469b44820ea1dfaf00a;p=portage.git Just use integer mtime if no fractional seconds are found in the search. svn path=/main/trunk/; revision=15040 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 863af1203..6dfd40b08 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]