From abbed879104dea9fd1bf406860d614a04b4d7845 Mon Sep 17 00:00:00 2001 From: Aeris Date: Sat, 3 Jul 2021 18:04:28 +0200 Subject: [PATCH] fdsfg --- server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server.py b/server.py index 318dbbf..3b9183f 100644 --- a/server.py +++ b/server.py @@ -56,14 +56,14 @@ def fetchThalia(): authors = i.xpath('section/ul/li') author = '' for j in authors: - author += ( j.xpath('/a/text()')[0] + ", " ) + author += ( j.xpath('a/text()')[0] + " " ) feed.add_item( - title=title, + title=(author + "- " + title), link=link, description=description, unique_id=post_id, - author=author + author_name=author ) return(bytes(feed.writeString('utf-8'),'utf-8'))