summaryrefslogtreecommitdiff
path: root/Lib/logging
diff options
context:
space:
mode:
authorBoris Feld <lothiraldan@gmail.com>2019-06-04 17:20:18 +0200
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2019-06-04 16:20:17 +0100
commit800d78637034d77c099d49c4fe99e1fe773da700 (patch)
treedd17f07774759d381fc1896b79669bfed6d7e5e0 /Lib/logging
parentf0b5ae4567637b24035ecda93a3240efc96b6dd9 (diff)
downloadcpython-git-800d78637034d77c099d49c4fe99e1fe773da700.tar.gz
Fix extraneous whitespace in QueueListener.prepare (GH-13803)
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index a913d27389..34ff7a056e 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -1437,7 +1437,7 @@ class QueueListener(object):
t.daemon = True
t.start()
- def prepare(self , record):
+ def prepare(self, record):
"""
Prepare a record for handling.