From 76b93eafcc3ca5e3ee8a9264637d61b91d00b167 Mon Sep 17 00:00:00 2001 From: James Troup Date: Tue, 16 Apr 2002 17:35:16 +0000 Subject: [PATCH] _really_ fix upload_too_new --- jennifer | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/jennifer b/jennifer index 1ea3db5f..a2fb8dc0 100755 --- a/jennifer +++ b/jennifer @@ -2,7 +2,7 @@ # Checks Debian packages from Incoming # Copyright (C) 2000, 2001 James Troup -# $Id: jennifer,v 1.12 2002-04-16 17:08:15 troup Exp $ +# $Id: jennifer,v 1.13 2002-04-16 17:35:16 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -44,7 +44,7 @@ re_is_changes = re.compile (r"(.+?)_(.+?)_(.+?)\.changes$"); ################################################################################ # Globals -jennifer_version = "$Revision: 1.12 $"; +jennifer_version = "$Revision: 1.13 $"; Cnf = None; Options = None; @@ -878,6 +878,10 @@ def check_timestamps(): # the file is still being uploaded. def upload_too_new(): + too_new = 0; + # Move back to the original directory to get accurate time stamps + cwd = os.getcwd(); + os.chdir(pkg.directory); file_list = pkg.files.keys(); file_list.extend(pkg.dsc_files.keys()); file_list.append(pkg.changes_file); @@ -885,10 +889,14 @@ def upload_too_new(): try: last_modified = time.time()-os.path.getmtime(file); if last_modified < int(Cnf["Dinstall::SkipTime"]): - return 1; + too_new = 1; + break; except: pass; - return 0; + os.chdir(cwd); + return too_new; + +################################################################################ def action (): # changes["distribution"] may not exist in corner cases -- 2.39.5