X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/e9aeedc51047d8d5e9e45c5253c776f8994da965..3a0c83394d5783715fab2be29fa1a9cfc3574e28:/src/librarian/meta/types/person.py diff --git a/src/librarian/meta/types/person.py b/src/librarian/meta/types/person.py index 2317780..ba1b55f 100644 --- a/src/librarian/meta/types/person.py +++ b/src/librarian/meta/types/person.py @@ -1,3 +1,6 @@ +# This file is part of Librarian, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. +# from functools import total_ordering from .base import MetaValue @@ -33,7 +36,7 @@ class Person(MetaValue): return cls(surname, *names) def readable(self): - return u" ".join(self.first_names + (self.last_name,)) + return " ".join(self.first_names + (self.last_name,)) def __eq__(self, right): return (self.last_name == right.last_name