From f03e0872e094622f9f43812704c45b09732a866d Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Tue, 28 Oct 2003 00:55:33 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2591 --- py/Boinc/tools.py | 5 ++--- tools/update_versions | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/py/Boinc/tools.py b/py/Boinc/tools.py index 85cc08a03d..fc41d7c885 100644 --- a/py/Boinc/tools.py +++ b/py/Boinc/tools.py @@ -57,12 +57,11 @@ def process_executable_file(file, signature_text=None, quiet=False, executable=T source_dir, source_file_base = os.path.split(file) target_file_base = get_kludge_url_filename(source_file_base) - target_dir = config.config.download_dir - target_path = os.path.join(target_dir, target_file_base) + target_path = os.path.join(config.config.download_dir, target_file_base) target_url = os.path.join(config.config.download_url, target_file_base) if file != target_path: if not quiet: - print "Copying %s to %s"%(source_file_base, target_dir) + print "Copying %s to %s"%(source_file_base, target_path) shutil.copy(file, target_path) xml = ''' diff --git a/tools/update_versions b/tools/update_versions index 8ff8c8d1f9..dcd248a4de 100755 --- a/tools/update_versions +++ b/tools/update_versions @@ -199,7 +199,7 @@ for appdir in xlistdir(config.app_dir): if not objects_to_commit: raise SystemExit("No new versions found!") -print "Commit %d items:" %len(objects_to_commit) +print "Ready to commit %d items:" %len(objects_to_commit) for object in objects_to_commit: print " ", object