[Python-checkins] Fix extraneous whitespace in QueueListener.prepare (GH-13803)

Vinay Sajip webhook-mailer at python.org
Tue Jun 4 11:20:25 EDT 2019


https://github.com/python/cpython/commit/800d78637034d77c099d49c4fe99e1fe773da700
commit: 800d78637034d77c099d49c4fe99e1fe773da700
branch: master
author: Boris Feld <lothiraldan at gmail.com>
committer: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: 2019-06-04T16:20:17+01:00
summary:

Fix extraneous whitespace in QueueListener.prepare (GH-13803)

files:
M Lib/logging/handlers.py

diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index a913d27389ab..34ff7a056ef5 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -1437,7 +1437,7 @@ def start(self):
         t.daemon = True
         t.start()
 
-    def prepare(self , record):
+    def prepare(self, record):
         """
         Prepare a record for handling.
 



More information about the Python-checkins mailing list