Fixed bad pluralization in cpustats

This commit is contained in:
Jeremy Fincher 2003-03-15 11:51:16 +00:00
parent f6066236a9
commit 8d287c2f66

View File

@ -214,16 +214,17 @@ class FunCommands(callbacks.Privmsg):
"takes no arguments" "takes no arguments"
(user, system, childUser, childSystem, elapsed) = os.times() (user, system, childUser, childSystem, elapsed) = os.times()
timeRunning = time.time() - self._startTime timeRunning = time.time() - self._startTime
threads = threading.activeCount()
response ='I have taken %s seconds of user time and %s seconds of '\ response ='I have taken %s seconds of user time and %s seconds of '\
'system time, for a total of %s seconds of CPU time. My '\ 'system time, for a total of %s seconds of CPU time. My '\
'children have taken %s seconds of user time and %s seconds'\ 'children have taken %s seconds of user time and %s seconds'\
' of system time for a total of %s seconds of CPU time. ' \ ' of system time for a total of %s seconds of CPU time. ' \
'I\'ve taken a total of %s%% of this computer\'s time. ' \ 'I\'ve taken a total of %s%% of this computer\'s time. ' \
'I currently have %s active threads.' %\ 'I currently have %s active %s.' %\
(user, system, user + system, (user, system, user + system,
childUser, childSystem, childUser + childSystem, childUser, childSystem, childUser + childSystem,
(user+system+childUser+childSystem)/timeRunning, (user+system+childUser+childSystem)/timeRunning,
threading.activeCount()) threads, threads == 1 and 'thread' or 'threads')
irc.reply(msg, response) irc.reply(msg, response)
def uptime(self, irc, msg, args): def uptime(self, irc, msg, args):