From 01ef18294abd0e489165f550bfe49f5488e7ad81 Mon Sep 17 00:00:00 2001 From: Chris AtLee Date: Fri, 30 Apr 2010 14:54:51 -0400 Subject: [PATCH] Bug 563008 - fix upload.py on python2.4. r=ted --- build/upload.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/upload.py b/build/upload.py index 864cb7b3479..c3e554f2006 100644 --- a/build/upload.py +++ b/build/upload.py @@ -179,9 +179,6 @@ def UploadFiles(user, host, path, files, verbose=False, port=None, ssh_key=None, print "Running post-upload command: " + post_upload_command file_list = '"' + '" "'.join(remote_files) + '"' DoSSHCommand('%s "%s" %s' % (post_upload_command, path, file_list), user, host, port=port, ssh_key=ssh_key) - except: - print "Encountered error while uploading" - raise finally: if upload_to_temp_dir: DoSSHCommand("rm -rf %s" % path, user, host, port=port,