From: John Wilkins Date: Mon, 10 Dec 2012 22:14:09 +0000 (-0800) Subject: doc: fixed indent in python example. X-Git-Tag: v0.57~331 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2e7cba7bca7f09d9f8dbde74eec24f25b44a85f7;p=ceph.git doc: fixed indent in python example. Signed-off-by: John Wilkins --- diff --git a/doc/radosgw/s3/python.rst b/doc/radosgw/s3/python.rst index 352616945382..c5a8432485a0 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::