diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2019-11-21 13:24:54 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-11-21 13:24:54 +0100 |
commit | 114298dccd13e72fe4733034e07ae0f2bf3aaeda (patch) | |
tree | 5c7a700cbf123660c351aa2a1ef3c0eadd737d83 /pylint/lint.py | |
parent | 722de4836b475d082816164a55d6998bdb2370df (diff) | |
download | pylint-git-114298dccd13e72fe4733034e07ae0f2bf3aaeda.tar.gz |
Remove unintentional debug statement
Diffstat (limited to 'pylint/lint.py')
-rw-r--r-- | pylint/lint.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pylint/lint.py b/pylint/lint.py index 6cc0c0a89..c85d512ec 100644 --- a/pylint/lint.py +++ b/pylint/lint.py @@ -1774,7 +1774,6 @@ group are mutually exclusive.", if linter.config.exit_zero: sys.exit(0) else: - print(score_value, linter.config.fail_under) if score_value and score_value > linter.config.fail_under: sys.exit(0) sys.exit(self.linter.msg_status) |