From 5cc5493c724016c04ff1eb7cdc5f49775ec383a1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 5 Dec 2016 22:30:26 -0800 Subject: remove unused logger from BaseFix --- Lib/lib2to3/fixer_base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/lib2to3/fixer_base.py b/Lib/lib2to3/fixer_base.py index d437b96..2f50ad3 100644 --- a/Lib/lib2to3/fixer_base.py +++ b/Lib/lib2to3/fixer_base.py @@ -4,7 +4,6 @@ """Base class for fixers (optional, but recommended).""" # Python imports -import logging import itertools # Local imports @@ -75,7 +74,6 @@ class BaseFix(object): The main refactoring tool should call this. """ self.filename = filename - self.logger = logging.getLogger(filename) def match(self, node): """Returns match for a given parse tree node. -- cgit v0.12