From 557e518a961a07fec806f4eed8e68b9ba2d76997 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 14 Nov 2003 14:06:19 +0000 Subject: [PATCH] Of course I can't reproduce the bug when I'm testing the fix for it, but this should take care of the bad error message. --- plugins/Sourceforge.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Sourceforge.py b/plugins/Sourceforge.py index 78033024a..aae43c4f2 100644 --- a/plugins/Sourceforge.py +++ b/plugins/Sourceforge.py @@ -309,6 +309,8 @@ class Sourceforge(callbacks.PrivmsgCommandAndRegexp, plugins.Configurable): ircutils.bold(num), '; '.join(resp)), prefixName = False) except urllib2.HTTPError, e: debug.msg(e.msg()) + except error, e: + debug.msg(e.msg()) sfSnarfer = privmsgs.urlSnarfer(sfSnarfer) Class = Sourceforge