[Erp5-report] r40130 luke - /erp5/trunk/buildout/tests/assertSoftware.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Nov 9 17:17:04 CET 2010


Author: luke
Date: Tue Nov  9 17:17:04 2010
New Revision: 40130

URL: http://svn.erp5.org?rev=40130&view=rev
Log:
 - simplify message

Modified:
    erp5/trunk/buildout/tests/assertSoftware.py

Modified: erp5/trunk/buildout/tests/assertSoftware.py
URL: http://svn.erp5.org/erp5/trunk/buildout/tests/assertSoftware.py?rev=40130&r1=40129&r2=40130&view=diff
==============================================================================
--- erp5/trunk/buildout/tests/assertSoftware.py [utf8] (original)
+++ erp5/trunk/buildout/tests/assertSoftware.py [utf8] Tue Nov  9 17:17:04 2010
@@ -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:




More information about the Erp5-report mailing list