diff options
Diffstat (limited to 'Lib/logging/handlers.py')
-rw-r--r-- | Lib/logging/handlers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 78e919d..b4c8a3b 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -1424,6 +1424,7 @@ class QueueHandler(logging.Handler): """ logging.Handler.__init__(self) self.queue = queue + self.listener = None # will be set to listener if configured via dictConfig() def enqueue(self, record): """ |