From 58d589af2c327a1bd2e1233e5c35ec5cfa2eec02 Mon Sep 17 00:00:00 2001 From: Federico Tedin Date: Sat, 17 Feb 2024 19:17:31 +0100 Subject: [PATCH] Clean Spanish qotd --- wikiquote/langs/es.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wikiquote/langs/es.py b/wikiquote/langs/es.py index acb7045..fab5a25 100644 --- a/wikiquote/langs/es.py +++ b/wikiquote/langs/es.py @@ -23,4 +23,4 @@ def qotd(html_tree: lxml.html.HtmlElement) -> Tuple[Text, Text]: raw_author = quote_container[1].xpath("td/div/a")[0].text_content() author = raw_author.strip() - return quote, author + return utils.clean_txt(quote), author