You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
darthtanner edited this page Sep 13, 2010
·
1 revision
Line 220 has a deprecated method,
\unittest_xml_reporting-1.0.3-py2.6.egg\xmlrunner\init.py:220: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
to fix this you simply need to make one little change to that line.
Original: failure.setAttribute(‘message’, test_result.err1.message)
New: failure.setAttribute(‘message’, str(test_result.err1))