fix #3663: changed and updated sort keys
authorJan Szejko <j-sz@o2.pl>
Wed, 27 Jan 2016 15:33:33 +0000 (16:33 +0100)
committerJan Szejko <j-sz@o2.pl>
Wed, 27 Jan 2016 15:33:33 +0000 (16:33 +0100)
librarian/dcparser.py

index 2c12b4e..31f2dae 100644 (file)
@@ -46,7 +46,7 @@ class Person(object):
             if len(parts[1]) == 0:
                 # there is no non-whitespace data after the comma
                 raise ValueError("Found a comma, but no names given: \"%s\" -> %r." % (text, parts))
-            names = [name for name in parts[1].split() if len(name)]  # all non-whitespace tokens
+            names = parts[1].split()
         return cls(surname, *names)
 
     def readable(self):