summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ module. Here is a basic working example::
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__":