From b7f777bd0a83df64243da2483a11fc7fb22af028 Mon Sep 17 00:00:00 2001 From: Nova Cat Date: Sun, 8 Dec 2024 10:50:27 -0800 Subject: [PATCH] remove newlines from page title, only show 100 characters of the title --- sweebot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sweebot.py b/sweebot.py index bb530aa..3a91928 100644 --- a/sweebot.py +++ b/sweebot.py @@ -658,7 +658,7 @@ while True: if content_type in allowedparse: if e.ok: soup = BeautifulSoup(e.text, 'html.parser') - multiline("(" + nick + ") " + (soup.title.string if soup.title != None else "[No title provided]"), channel) + multiline("(" + nick + ") " + (soup.title.string.rstrip()[:100] if soup.title != None else "[No title provided]"), channel) else: multiline("(" + nick + ") [HTTP " + str(e.status_code) + "]", channel) else: @@ -676,7 +676,7 @@ while True: if content_type in allowedparse: if e.ok: soup = BeautifulSoup(e.text, 'html.parser') - multiline("(" + nick + ") " + (soup.title.string if soup.title != None else "[No title provided]"), channel) + multiline("(" + nick + ") " + (soup.title.string.rstrip()[:100] if soup.title != None else "[No title provided]"), channel) else: multiline("(" + nick + ") [HTTP " + str(e.status_code) + "]", channel) else: