From 8cbc9ceaf541042727f7931fc617746cbf2bc1d5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 22 Sep 2006 20:24:06 +0000 Subject: For compatibility with float timestamps in python-2.5, convert st_mtime attributes to long wherever portage expects 1s resolution. svn path=/main/trunk/; revision=4500 --- pym/portage_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pym/portage_update.py') diff --git a/pym/portage_update.py b/pym/portage_update.py index 0184f04e3..671e9bc13 100644 --- a/pym/portage_update.py +++ b/pym/portage_update.py @@ -80,7 +80,7 @@ def grab_updates(updpath, prev_mtimes=None): file_path = os.path.join(updpath, myfile) mystat = os.stat(file_path) if file_path not in prev_mtimes or \ - prev_mtimes[file_path] != mystat.st_mtime: + long(prev_mtimes[file_path]) != long(mystat.st_mtime): f = open(file_path) content = f.read() f.close() -- cgit v1.2.3-1-g7c22