Browse Source

pylint compliance

pull/132/head
Oliverpool 9 years ago
parent
commit
c1df24f0c0
  1. 6
      test/test_compilation/test_compilation.py

6
test/test_compilation/test_compilation.py

@ -106,6 +106,6 @@ class FileTest(unittest.TestCase, metaclass=dynamic.DynamicTest):
cwd=os.path.dirname(songbook),
)
return 0
except subprocess.CalledProcessError as e:
LOGGER.warning(e.output)
return e.returncode
except subprocess.CalledProcessError as error:
LOGGER.warning(error.output)
return error.returncode

Loading…
Cancel
Save