diff options
| author | Chris Rebert <[email protected]> | 2013-12-26 13:28:22 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-12-26 13:28:22 -0800 |
| commit | be6ad3fda01de07931d8768708cc17385a552b92 (patch) | |
| tree | 39b6f9320ae7978fdd4a717e46c48c22ce8e787a | |
| parent | e0268c32cb7f4db254f7527f600aa590e4dda377 (diff) | |
| parent | d381771f6a9260a0c8c584bd3ef3ab57f8a59fed (diff) | |
| download | bootstrap-be6ad3fda01de07931d8768708cc17385a552b92.tar.xz bootstrap-be6ad3fda01de07931d8768708cc17385a552b92.zip | |
Merge pull request #12009 from ZDroid/no-utf8-py
Replace UTF-8 characters in s3_cache.py with ASCII characters
| -rwxr-xr-x | test-infra/s3_cache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-infra/s3_cache.py b/test-infra/s3_cache.py index 6f099a19f..cf395e9d1 100755 --- a/test-infra/s3_cache.py +++ b/test-infra/s3_cache.py @@ -79,8 +79,8 @@ def upload(directory): if __name__ == '__main__': # Uses environment variables: - # AWS_ACCESS_KEY_ID - AWS Access Key ID - # AWS_SECRET_ACCESS_KEY - AWS Secret Access Key + # AWS_ACCESS_KEY_ID -- AWS Access Key ID + # AWS_SECRET_ACCESS_KEY -- AWS Secret Access Key argv.pop(0) if len(argv) != 4: raise SystemExit("USAGE: node_modules_cache.py <download | upload> <friendly name> <dependencies file> <directory>") |
