From: Benjamin Peterson Date: Fri, 25 Jul 2008 21:59:53 +0000 (+0000) Subject: fix indentation X-Git-Tag: v2.6b3~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c;p=thirdparty%2FPython%2Fcpython.git fix indentation --- diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index ee7666d61243..4d64af8c94a7 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -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)