From: Jan Szejko Date: Wed, 27 Jan 2016 15:33:33 +0000 (+0100) Subject: fix #3663: changed and updated sort keys X-Git-Tag: 1.7~80 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/0efff78112a63c9321b297ff9ff98a8861d3cdf6 fix #3663: changed and updated sort keys --- diff --git a/librarian/dcparser.py b/librarian/dcparser.py index 2c12b4e..31f2dae 100644 --- a/librarian/dcparser.py +++ b/librarian/dcparser.py @@ -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):