Fix error in run_boto_script
This commit is contained in:
parent
d00bff4d94
commit
c943e4a61f
1 changed files with 1 additions and 7 deletions
|
@ -220,13 +220,7 @@ def run_boto_script(access_key, secret_key, script_name, *args):
|
||||||
[env.get('PYTHONPATH', '')] + boto_path_dirs())
|
[env.get('PYTHONPATH', '')] + boto_path_dirs())
|
||||||
|
|
||||||
boto = os.path.join(BOTO_DIR, 'bin', script_name)
|
boto = os.path.join(BOTO_DIR, 'bin', script_name)
|
||||||
|
execute([sys.executable, boto] + list(args), env)
|
||||||
args = [
|
|
||||||
sys.executable,
|
|
||||||
boto
|
|
||||||
] + args
|
|
||||||
|
|
||||||
execute(args, env)
|
|
||||||
|
|
||||||
|
|
||||||
def s3put(bucket, access_key, secret_key, prefix, key_prefix, files):
|
def s3put(bucket, access_key, secret_key, prefix, key_prefix, files):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue