summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wilkins <john.wilkins@inktank.com>2012-12-10 14:14:09 -0800
committerJohn Wilkins <john.wilkins@inktank.com>2012-12-10 14:14:09 -0800
commit2e7cba7bca7f09d9f8dbde74eec24f25b44a85f7 (patch)
treea13f66938000b26e3d5961f52009c3cf0268cb97
parentf4be3c8d98568379de3454cd5111144bda49a9dc (diff)
downloadceph-2e7cba7bca7f09d9f8dbde74eec24f25b44a85f7.tar.gz
doc: fixed indent in python example.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r--doc/radosgw/s3/python.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/radosgw/s3/python.rst b/doc/radosgw/s3/python.rst
index 35261694538..c5a8432485a 100644
--- a/doc/radosgw/s3/python.rst
+++ b/doc/radosgw/s3/python.rst
@@ -32,9 +32,9 @@ This also prints out the bucket name and creation date of each bucket.
.. code-block:: python
for bucket in conn.get_all_buckets():
- print "{name}\t{created}".format(
- name = bucket.name,
- created = bucket.creation_date,
+ print "{name}\t{created}".format(
+ name = bucket.name,
+ created = bucket.creation_date,
)
The output will look something like this::