Commit 3a2dbda4 authored by Łukasz Nowak's avatar Łukasz Nowak

- simplify message


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40130 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 05eb409a
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment