summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-07-25 21:59:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-07-25 21:59:53 (GMT)
commit3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c (patch)
tree4ba24ee458ebb98636cf149ef2135bfbebeaa5b1
parentba54edadb3ad920a72369374bca35021bb8a1edb (diff)
downloadcpython-3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c.zip
cpython-3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c.tar.gz
cpython-3ac2f24f25e3fe387cfffa17cdfcfdb6c0b91f9c.tar.bz2
fix indentation
-rw-r--r--Doc/library/2to3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index ee7666d..4d64af8 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)