Forgot to add the % name to the 'no user' gkstats response.

This commit is contained in:
Jeremy Fincher 2003-08-05 05:02:21 +00:00
parent 29f0b638b2
commit b4633370ce

View File

@ -237,7 +237,7 @@ class Http(callbacks.Privmsg):
(name, rating, games, w, l, d, seen)) (name, rating, games, w, l, d, seen))
except AttributeError: except AttributeError:
if profile.find('User %s not found!' % name) != -1: if profile.find('User %s not found!' % name) != -1:
irc.error(msg, 'No user %s exists.') irc.error(msg, 'No user %s exists.' % name)
else: else:
irc.error(msg, 'The format of the page was odd.') irc.error(msg, 'The format of the page was odd.')
except urllib2.URLError: except urllib2.URLError: