From 76c0a9b8b7f4821ce0140c09e9643d9598961118 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Jan 2016 09:24:37 +0530 Subject: [PATCH] ... --- setup/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/upload.py b/setup/upload.py index 7852e31d55..3c835d0ec3 100644 --- a/setup/upload.py +++ b/setup/upload.py @@ -111,7 +111,7 @@ def dbs_cmdline(ver): def run_remote_upload(args): print 'Running remotely:', ' '.join(args) subprocess.check_call(['ssh', '-x', '%s@%s'%(STAGING_USER, STAGING_HOST), - 'cd', STAGING_DIR, '&&', 'python', 'hosting.py']+args) + 'cd', STAGING_DIR, '&&', 'python2', 'hosting.py']+args) # }}}