diff --git a/gen_feed.py b/gen_feed.py index 0b6b375..a745ff7 100644 --- a/gen_feed.py +++ b/gen_feed.py @@ -34,7 +34,7 @@ class Article: # Handle text content = [f"

{x.text}

" for x in soup.find("div", id="content").find_all("p")] - self.text = f"
{" ".join(content)}
" + self.text = f"
{' '.join(content)}
" def __str__(self):