diff --git a/plugins/Bugzilla.py b/plugins/Bugzilla.py index a9834c10a..1db9d8134 100644 --- a/plugins/Bugzilla.py +++ b/plugins/Bugzilla.py @@ -168,7 +168,7 @@ class Bugzilla(callbacks.PrivmsgCommandAndRegexp, plugins.Toggleable): irc.reply(msg, 'Defined bugzillae: %s' % ' '.join(results)) return def bzSnarfer(self, irc, msg, match): - r"(.*)/show_bug.cgi\?id=([0-9]+)" + r"(http://\S+)/show_bug.cgi\?id=([0-9]+)" if not self.toggles.get('bug', channel=msg.args[0]): return queryurl = '%s/xml.cgi?id=%s' % (match.group(1), match.group(2))