Skip to content

Commit 9607365

Browse files
committed
Merge pull request #473 from ptone/patch-1
args swapped in docs
2 parents b343acf + 07a0a11 commit 9607365

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcloud/storage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
>>> key = bucket.get_key('/remote/path/to/file.txt')
2323
>>> print key.get_contents_as_string()
2424
>>> key.set_contents_from_string('New contents!')
25-
>>> bucket.upload_file('/remote/path/storage.txt', '/local/path.txt')
25+
>>> bucket.upload_file('/local/path.txt', '/remote/path/storage.txt')
2626
2727
The main concepts with this API are:
2828

0 commit comments

Comments
 (0)