summaryrefslogtreecommitdiff
path: root/flake8/checker.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-02-22 21:59:59 -0600
committerIan Cordasco <graffatcolmingov@gmail.com>2016-02-22 21:59:59 -0600
commit7addb72615a53aaf05b4e7e121bc0fbdfdd7d789 (patch)
tree00d6ac74a845d445a0c22e98b447c1b280fdc777 /flake8/checker.py
parentd5a480a46401949c42fe42fa2eb50a646e0ec3f6 (diff)
downloadflake8-7addb72615a53aaf05b4e7e121bc0fbdfdd7d789.tar.gz
Add unified linters testenv
Diffstat (limited to 'flake8/checker.py')
-rw-r--r--flake8/checker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake8/checker.py b/flake8/checker.py
index 0a3a86f..fc2da6b 100644
--- a/flake8/checker.py
+++ b/flake8/checker.py
@@ -2,8 +2,6 @@
import logging
import os
-LOG = logging.getLogger(__name__)
-
try:
import multiprocessing
except ImportError:
@@ -11,6 +9,8 @@ except ImportError:
from flake8 import utils
+LOG = logging.getLogger(__name__)
+
class Manager(object):
"""Manage the parallelism and checker instances for each plugin and file.