From dc26460a28c0dab2361f96491f0012923dc46b79 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Thu, 21 Sep 2017 19:52:27 +0100 Subject: [PATCH] Add missing LOG import Fixes an undefined variable error found by pylint --- mitogen/tcp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mitogen/tcp.py b/mitogen/tcp.py index ace294ef..18829ab7 100644 --- a/mitogen/tcp.py +++ b/mitogen/tcp.py @@ -7,6 +7,8 @@ import socket import mitogen.core +from mitogen.core import LOG + class Listener(mitogen.core.BasicStream): def __init__(self, broker, address=None, backlog=30):