[Python-checkins] r65239 - python/trunk/Doc/library/2to3.rst
benjamin.peterson
python-checkins at python.org
Fri Jul 25 23:59:53 CEST 2008
Author: benjamin.peterson
Date: Fri Jul 25 23:59:53 2008
New Revision: 65239
Log:
fix indentation
Modified:
python/trunk/Doc/library/2to3.rst
Modified: python/trunk/Doc/library/2to3.rst
==============================================================================
--- python/trunk/Doc/library/2to3.rst (original)
+++ python/trunk/Doc/library/2to3.rst Fri Jul 25 23:59:53 2008
@@ -36,7 +36,7 @@
: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)
More information about the Python-checkins
mailing list