diff options
author | John Wilkins <john.wilkins@inktank.com> | 2012-12-10 14:14:09 -0800 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2012-12-10 14:14:09 -0800 |
commit | 2e7cba7bca7f09d9f8dbde74eec24f25b44a85f7 (patch) | |
tree | a13f66938000b26e3d5961f52009c3cf0268cb97 | |
parent | f4be3c8d98568379de3454cd5111144bda49a9dc (diff) | |
download | ceph-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.rst | 6 |
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:: |