#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

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 ``'''``. End of lines do not need to be escaped when using triple-quotes, but
they will be included in the string. :: they will be included in the string. ::
print """ print("""
Usage: thingy [OPTIONS] Usage: thingy [OPTIONS]
-h Display this usage message -h Display this usage message
-H hostname Hostname to connect to -H hostname Hostname to connect to
""" """)
produces the following output: produces the following output: