minor fix in error reporting
authorJan Szejko <j-sz@o2.pl>
Thu, 21 Jan 2016 13:20:08 +0000 (14:20 +0100)
committerJan Szejko <j-sz@o2.pl>
Thu, 21 Jan 2016 13:20:08 +0000 (14:20 +0100)
librarian/dcparser.py

index fd3eec5..2c12b4e 100644 (file)
@@ -40,7 +40,7 @@ class Person(object):
             surname = parts[0]
             names = []
         elif len(parts) != 2:
-            raise ValueError("Invalid person name. There should be at most one comma: \"%s\"." % text)
+            raise ValueError("Invalid person name. There should be at most one comma: \"%s\"." % text.encode('utf-8'))
         else:
             surname = parts[0]
             if len(parts[1]) == 0: