| Index: third_party/gsutil/boto/boto/gs/connection.py
|
| diff --git a/third_party/gsutil/20110627/boto/boto/gs/connection.py b/third_party/gsutil/boto/boto/gs/connection.py
|
| similarity index 96%
|
| rename from third_party/gsutil/20110627/boto/boto/gs/connection.py
|
| rename to third_party/gsutil/boto/boto/gs/connection.py
|
| index cf79ed7224b0c3b1aa67d3b6b3cd3720f7855034..20b022031eaab2afee97c86bea634c9a518e29d7 100755
|
| --- a/third_party/gsutil/20110627/boto/boto/gs/connection.py
|
| +++ b/third_party/gsutil/boto/boto/gs/connection.py
|
| @@ -37,11 +37,13 @@ class GSConnection(S3Connection):
|
| is_secure=True, port=None, proxy=None, proxy_port=None,
|
| proxy_user=None, proxy_pass=None,
|
| host=DefaultHost, debug=0, https_connection_factory=None,
|
| - calling_format=SubdomainCallingFormat(), path='/'):
|
| + calling_format=SubdomainCallingFormat(), path='/',
|
| + suppress_consec_slashes=True):
|
| S3Connection.__init__(self, gs_access_key_id, gs_secret_access_key,
|
| is_secure, port, proxy, proxy_port, proxy_user, proxy_pass,
|
| host, debug, https_connection_factory, calling_format, path,
|
| - "google", Bucket)
|
| + "google", Bucket,
|
| + suppress_consec_slashes=suppress_consec_slashes)
|
|
|
| def create_bucket(self, bucket_name, headers=None,
|
| location=Location.DEFAULT, policy=None):
|
|
|