diff options
author | Boris Feld <lothiraldan@gmail.com> | 2019-06-04 15:20:18 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-06-04 15:20:17 (GMT) |
commit | 800d78637034d77c099d49c4fe99e1fe773da700 (patch) | |
tree | dd17f07774759d381fc1896b79669bfed6d7e5e0 /Lib | |
parent | f0b5ae4567637b24035ecda93a3240efc96b6dd9 (diff) | |
download | cpython-800d78637034d77c099d49c4fe99e1fe773da700.zip cpython-800d78637034d77c099d49c4fe99e1fe773da700.tar.gz cpython-800d78637034d77c099d49c4fe99e1fe773da700.tar.bz2 |
Fix extraneous whitespace in QueueListener.prepare (GH-13803)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/logging/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index a913d27..34ff7a0 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. |