commit 0f9cce088e53da4d878f24d6e0eb3a4940cc54b3
parent cba6d79c58114e1f580a7ec5dee07d25da0902d8
Author: Nathaniel Chappelle <nathaniel@chappelle.dev>
Date: Fri, 6 Feb 2026 12:27:11 -0800
fixing typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/listen-page-bot/bot.py b/listen-page-bot/bot.py
@@ -129,7 +129,7 @@ def update_markdown(title, artist, link, img_url):
# Format the content back (BeautifulSoup adds extra formatting,
# so we clean up the string slightly)
- post.content = f"\nAn overview of music and podcasts I currently have on repeat. [Checkout](blog/listen-cms/) how I manage this page to keep it current, without have to touch a single piece of code (until it breaks).\n\n## Music\n\n{gallery.prettify()}"
+ post.content = f"\nAn overview of music and podcasts I currently have on repeat. [Checkout](blog/listen-cms/) how I manage this page to keep it current, without touching a single piece of code (until it breaks).\n\n## Music\n\n{gallery.prettify()}"
# Save file
with open(MD_FILE_PATH, 'wb') as f: