From fa0cecfa3a21fd4f6e9613daf2f48500d62ab518 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 13 Apr 2008 07:43:24 +0000 Subject: Convert st_mtime to long for movefile() return type. svn path=/main/trunk/; revision=9865 --- pym/portage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 6a6d088d7..5c712a472 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5221,7 +5221,7 @@ def movefile(src,dest,newmtime=None,sstat=None,mysettings=None): # The utime can fail here with EPERM even though the move succeeded. # Instead of failing, use stat to return the mtime if possible. try: - newmtime = os.stat(dest).st_mtime + newmtime = long(os.stat(dest).st_mtime) except OSError, e: writemsg("!!! Failed to stat in movefile()\n", noiselevel=-1) writemsg("!!! %s\n" % dest, noiselevel=-1) -- cgit v1.2.3-1-g7c22