]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: fixed indent in python example.
authorJohn Wilkins <john.wilkins@inktank.com>
Mon, 10 Dec 2012 22:14:09 +0000 (14:14 -0800)
committerJohn Wilkins <john.wilkins@inktank.com>
Mon, 10 Dec 2012 22:14:09 +0000 (14:14 -0800)
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
doc/radosgw/s3/python.rst

index 352616945382781ef6c1a647db9a636771924b6b..c5a8432485a0c26f803ba0b997ca430c7ca2eb1a 100644 (file)
@@ -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::