#6998: fix missing () on a print

This commit is contained in:
Ezio Melotti 2009-09-25 20:14:02 +00:00
parent ed61093277
commit b297e714e2
1 changed files with 2 additions and 2 deletions

View File

@ -222,11 +222,11 @@ Or, strings can be surrounded in a pair of matching triple-quotes: ``"""`` or
``'''``. End of lines do not need to be escaped when using triple-quotes, but
they will be included in the string. ::
print """
print("""
Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to
"""
""")
produces the following output: