]> granicus.if.org Git - python/commitdiff
fix indentation
authorBenjamin Peterson <benjamin@python.org>
Fri, 25 Jul 2008 21:59:53 +0000 (21:59 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 25 Jul 2008 21:59:53 +0000 (21:59 +0000)
Doc/library/2to3.rst

index ee7666d6124309682b9a94b33a6759550eb70017..4d64af8c94a74a8025f6f6f4990a76d1967c9a24 100644 (file)
@@ -36,7 +36,7 @@ original file will also be made.)  This is done with the :option:`-w` flag::
 :file:`example.py` will now look like this::
 
    def greet(name):
-      print("Hello, {0}!".format(name))
+       print("Hello, {0}!".format(name))
    print("What's your name?")
    name = input()
    greet(name)