Removed the trailing ' :: ' from pgpkey

This commit is contained in:
James Vega 2003-09-08 08:59:43 +00:00
parent ecdcc63756
commit d9e3a199b0

View File

@ -405,7 +405,7 @@ class Http(callbacks.Privmsg):
if len(pgpkeys) == 0:
irc.reply(msg, 'No results found for %s.' % search)
else:
irc.reply(msg, 'Matches found for %s: %s' % (search, pgpkeys))
irc.reply(msg, 'Matches found for %s: %s' % (search, pgpkeys[:-4]))
Class = Http