summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Williams <roy.williams.iii@gmail.com>2016-12-02 13:50:24 -0800
committerGitHub <noreply@github.com>2016-12-02 13:50:24 -0800
commit63c17ccb30a92255c4bd4da05db9bf3003f0e618 (patch)
tree27a8d9b9168b46d5e9eeb249e835a59419ce1373
parent97ab7787be55370a6669494df146a4fd5f54f59b (diff)
downloadpylint-git-63c17ccb30a92255c4bd4da05db9bf3003f0e618.tar.gz
Remove errant print statement. (#1186)
-rw-r--r--pylint/checkers/python3.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py
index 8a10c7eda..a82de4d33 100644
--- a/pylint/checkers/python3.py
+++ b/pylint/checkers/python3.py
@@ -489,7 +489,6 @@ class Python3Checker(checkers.BaseChecker):
self._future_absolute_import = False
def visit_functiondef(self, node):
- print('Checking {}'.format(node.name))
if node.is_method() and node.name in self._unused_magic_methods:
method_name = node.name
if node.name.startswith('__'):