commit | 6911e3ce3f72af759908b869b73391ea00d328e2 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Sep 04 07:15:32 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Sep 04 07:15:32 2007 +0000 |
tree | 5d4ff6070cb3f0f46f0a31ee4805b41053a06b48 | |
parent | c9879246a2dd33a217960496fdf4606cb117c6a6 [diff] [blame] |
Convert all print statements in the docs.
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 1dac8b6..fb4bc4c 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst
@@ -841,7 +841,7 @@ logging.basicConfig( format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s") tcpserver = LogRecordSocketReceiver() - print "About to start TCP server..." + print("About to start TCP server...") tcpserver.serve_until_stopped() if __name__ == "__main__":