Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: third_party/gsutil/boto/boto/gs/connection.py

Issue 10199002: Upgrade gsutil to 3.4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/gsutil/boto/boto/gs/bucket.py ('k') | third_party/gsutil/boto/boto/gs/cors.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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):
« no previous file with comments | « third_party/gsutil/boto/boto/gs/bucket.py ('k') | third_party/gsutil/boto/boto/gs/cors.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698