ChannelStats.rank now starts from 1 instead of 0

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit 169aee3bc0)
This commit is contained in:
James Vega 2009-08-20 10:48:41 -04:00
parent 5b8bae5d5f
commit 6bebc383b4
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
###
# Copyright (c) 2002-2004, Jeremiah Fincher
# Copyright (c) 2009, James Vega
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -60,6 +61,7 @@ class ChannelStat(irclib.IrcCommandDispatcher):
self.smileys = smileys
self.topics = topics
self.words = words
def values(self):
return [getattr(self, s) for s in self._values]
@ -311,7 +313,7 @@ class ChannelStats(callbacks.Plugin):
users.append((v, ircdb.users.getUser(id).name))
users.sort()
users.reverse()
s = utils.str.commaAndify(['#%s %s (%.3g)' % (i, u, v)
s = utils.str.commaAndify(['#%s %s (%.3g)' % (i+1, u, v)
for (i, (v, u)) in enumerate(users)])
irc.reply(s)
rank = wrap(rank, ['channeldb', 'text'])