From: Boris Feld Date: Tue, 4 Jun 2019 15:20:18 +0000 (+0200) Subject: Fix extraneous whitespace in QueueListener.prepare (GH-13803) X-Git-Tag: v3.8.0b1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=800d78637034d77c099d49c4fe99e1fe773da700;p=thirdparty%2FPython%2Fcpython.git Fix extraneous whitespace in QueueListener.prepare (GH-13803) --- 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 @@ class QueueListener(object): t.daemon = True t.start() - def prepare(self , record): + def prepare(self, record): """ Prepare a record for handling.