diff --git a/plugins/Http.py b/plugins/Http.py index f3a7b16f7..78eda0e50 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -74,6 +74,8 @@ class Http(callbacks.Privmsg): irc.reply(msg, m.group(1)) else: irc.reply(msg, 'That URL appears to have no HTML title.') + except ValueError, e: + irc.error(msg, str(e)) except Exception, e: irc.error(msg, debug.exnToString(e))