From 3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 25 Jul 2008 21:59:53 +0000 Subject: [PATCH] fix indentation --- Doc/library/2to3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index ee7666d612..4d64af8c94 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) -- 2.40.0