X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/91f6668cbed67a0a6513dd892f04be5cffadf966..51396a4419bb3d4b89ad65a434dfeb9e81e6f6e2:/librarian/xmlutils.py?ds=inline diff --git a/librarian/xmlutils.py b/librarian/xmlutils.py index f5cd213..37a719b 100644 --- a/librarian/xmlutils.py +++ b/librarian/xmlutils.py @@ -102,7 +102,7 @@ class Xmill(object): # depending on number of returned values, vals can be None, a value, or a tuple. # how poorly designed is that? 9 lines below are needed just to unpack this. if vals is None: - return [] + return [self.filter_text(element.tail)] else: if not isinstance(vals, tuple): return [vals, self.filter_text(element.tail)]