[diffoscope] 04/12: fix pep8 E131

Mattia Rizzolo mattia at debian.org
Sat Sep 9 22:04:39 CEST 2017


This is an automated email from the git hooks/post-receive script.

mattia pushed a commit to branch master
in repository diffoscope.

commit 9b4350ae6a5b9770d47b28c057a03c7b7afce7b9
Author: Mattia Rizzolo <mattia at debian.org>
Date:   Sat Sep 9 21:40:02 2017 +0200

    fix pep8 E131
    
    Signed-off-by: Mattia Rizzolo <mattia at debian.org>
---
 tests/utils/tools.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/utils/tools.py b/tests/utils/tools.py
index bf6243f..89090e8 100644
--- a/tests/utils/tools.py
+++ b/tests/utils/tools.py
@@ -62,8 +62,8 @@ def skip_unless_tool_is_between(tool, actual_ver, min_ver, max_ver, vcls=LooseVe
     if callable(actual_ver):
         actual_ver = actual_ver()
     return pytest.mark.skipif(
-        (vcls(str(actual_ver)) < vcls(str(min_ver)))
-                  or (vcls(str(actual_ver)) > vcls(str(max_ver))),
+        (vcls(str(actual_ver)) < vcls(str(min_ver))) or
+        (vcls(str(actual_ver)) > vcls(str(max_ver))),
         reason="requires {} >= {} >= {} ({} detected)".format(min_ver, tool,
                                                             max_ver, actual_ver)
     )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/diffoscope.git


More information about the diffoscope mailing list