Revision: 3149
Author: jussi.ao.malinen
Date: Tue May  4 06:39:19 2010
Log: fixed unicode handling on error messages with continue on failure
http://code.google.com/p/robotframework/source/detail?r=3149

Modified:
 /trunk/src/robot/errors.py

=======================================
--- /trunk/src/robot/errors.py  Tue May  4 05:32:33 2010
+++ /trunk/src/robot/errors.py  Tue May  4 06:39:19 2010
@@ -79,7 +79,7 @@
         if len(self._errors) == 1:
             return unicode(self._errors[0])
         lines = ['Several failures occurred:'] \
- + ['%d) %s' % (i+1, err) for i, err in enumerate(self._errors)] + + ['%d) %s' % (i+1, unicode(err)) for i, err in enumerate(self._errors)]
         return '\n\n'.join(lines)


Reply via email to