fix indentation

This commit is contained in:
Benjamin Peterson 2008-07-25 21:59:53 +00:00
parent ba54edadb3
commit 3ac2f24f25
1 changed files with 1 additions and 1 deletions

View 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)