From aec1cf38421fad7bc196b69fcdaec00426af5ab4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 26 Sep 2016 08:12:18 +0200 Subject: [PATCH] Fix lint --- scripts/dev/check_coverage.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/dev/check_coverage.py b/scripts/dev/check_coverage.py index 7c54c8149..e9bb675b0 100644 --- a/scripts/dev/check_coverage.py +++ b/scripts/dev/check_coverage.py @@ -233,7 +233,8 @@ def check(fileobj, perfect_files): if filename in perfect_src_files and is_bad: text = "{} has {}% line and {}% branch coverage!".format( filename, line_cov, branch_cov) - messages.append(Message(MsgType.insufficent_coverage, filename, text)) + messages.append(Message(MsgType.insufficent_coverage, filename, + text)) elif (filename not in perfect_src_files and not is_bad and filename not in WHITELISTED_FILES): text = ("{} has 100% coverage but is not in " @@ -263,8 +264,8 @@ def main_check(): subprocess.check_call([sys.executable, '-m', 'coverage', 'report', '--show-missing', '--include', filters]) print() - print("To debug this, run 'tox -e py35-cov' (or py34-cov) locally and check " - "htmlcov/index.html") + print("To debug this, run 'tox -e py35-cov' (or py34-cov) locally and " + "check htmlcov/index.html") print("or check https://codecov.io/github/The-Compiler/qutebrowser") print()