diff --git a/buildout/tests/assertSoftware.py b/buildout/tests/assertSoftware.py index 9adf860949ef72e2923956ab263eefd2c4a65277..ddd1da7cb3ddfca5907a57d60f3a0b49e1059277 100644 --- a/buildout/tests/assertSoftware.py +++ b/buildout/tests/assertSoftware.py @@ -39,7 +39,7 @@ def readElfAsDict(f): stderr=subprocess.STDOUT) result = popen.communicate()[0] if popen.returncode != 0: - raise AssertionError('Issue during check:\n%s' % result) + raise AssertionError(result) library_list = [] for l in result.split('\n'): if '(NEEDED)' in l: