diff --git a/plugins/Http.py b/plugins/Http.py index e05cf4ef2..1d037be90 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -202,7 +202,10 @@ class Http(callbacks.Privmsg): id specifies which quote to retrieve. """ id = privmsgs.getArgs(args, required=0, optional=1) - id = id or 'random1' + if id: + id = 'quote=%s' % id + else: + id = 'random' html = webutils.getUrl('http://bash.org/?%s' % id) m = self._mlgeekquotere.search(html) if m is None: