From 13efe0e0accad17f8c22e2396dcc6ad5c28a5c18 Mon Sep 17 00:00:00 2001 From: lub Date: Sun, 3 May 2020 14:03:45 +0200 Subject: [PATCH] fix
ordering --- scrape.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrape.py b/scrape.py index b87363e..980683b 100644 --- a/scrape.py +++ b/scrape.py @@ -74,9 +74,9 @@ def get_body(post): return body def get_formatted_body(post): - formatted_body = '' - formatted_body += '
'+post['title']+'
' - formatted_body += '
' + formatted_body = '
' + formatted_body += post['title'] + formatted_body += '
' if post['description']: formatted_body += '

'+post['description']+'

'