forked from swee/MeowNex
again
This commit is contained in:
parent
b7f777bd0a
commit
0fc91a8aab
1 changed files with 2 additions and 2 deletions
|
@ -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.rstrip()[:100] if soup.title != None else "[No title provided]"), channel)
|
||||
multiline("(" + nick + ") " + (" ".join(soup.title.string.splitlines())[: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.rstrip()[:100] if soup.title != None else "[No title provided]"), channel)
|
||||
multiline("(" + nick + ") " + (" ".join(soup.title.string.splitlines())[:100] if soup.title != None else "[No title provided]"), channel)
|
||||
else:
|
||||
multiline("(" + nick + ") [HTTP " + str(e.status_code) + "]", channel)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue