This commit is contained in:
Kovid Goyal 2016-01-15 09:24:37 +05:30
parent c59c6af1ee
commit 76c0a9b8b7

View File

@ -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)
# }}}