_exceptions.py
changeset 4270 189e4f5279e9
parent 4212 ab6573088b4a
child 4911 898c35be5873
--- a/_exceptions.py	Tue Jan 19 18:10:01 2010 +0100
+++ b/_exceptions.py	Tue Jan 19 18:11:31 2010 +0100
@@ -20,7 +20,7 @@
             if self.args:
                 return self.msg % tuple(self.args)
             return self.msg
-        return ' '.join(str(arg) for arg in self.args)
+        return ' '.join(unicode(arg) for arg in self.args)
 
 
 class ConfigurationError(CubicWebException):