Revision: 3143
Author: KariHusa
Date: Tue May 4 04:39:04 2010
Log: Fixed unicode
http://code.google.com/p/robotframework/source/detail?r=3143
Modified:
/trunk/src/robot/errors.py
=======================================
--- /trunk/src/robot/errors.py Tue May 4 04:28:08 2010
+++ /trunk/src/robot/errors.py Tue May 4 04:39:04 2010
@@ -73,7 +73,7 @@
def __unicode__(self):
if len(self._errors) == 1:
- return str(self._errors[0])
+ return unicode(self._errors[0])
return '\n\n'.join('Error %d: %s' % (i+1, err)
for i, err in enumerate(self._errors))