mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Fixed bug #854232.
This commit is contained in:
parent
f8f0333a9c
commit
5a6b5329f1
@ -143,7 +143,8 @@ class Http(callbacks.Privmsg):
|
|||||||
if m is not None:
|
if m is not None:
|
||||||
irc.reply(msg, utils.htmlToText(m.group(1).strip()))
|
irc.reply(msg, utils.htmlToText(m.group(1).strip()))
|
||||||
else:
|
else:
|
||||||
irc.reply(msg, 'That URL appears to have no HTML title.')
|
irc.reply(msg, 'That URL appears to have no HTML title '
|
||||||
|
'within the first %s bytes.' % self.maxSize)
|
||||||
except ValueError, e:
|
except ValueError, e:
|
||||||
irc.error(msg, str(e))
|
irc.error(msg, str(e))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user