Removed the percentage thing, it's not entirely useful.

This commit is contained in:
Jeremy Fincher 2003-10-24 21:42:54 +00:00
parent 9320ad0e4e
commit 42795d34d0
1 changed files with 1 additions and 3 deletions

View File

@ -178,11 +178,9 @@ class Status(callbacks.Privmsg):
'of system time, for a total of %.2f seconds of CPU '
'time. My children have taken %.2f seconds of user time '
'and %.2f seconds of system time for a total of %.2f '
'seconds of CPU time. I\'ve taken a total of %.2f%% of '
'this computer\'s time. Out of %s I have %s active.' %
'seconds of CPU time. Out of %s I have %s active.' %
(user, system, user + system,
childUser, childSystem, childUser + childSystem,
(user+system+childUser+childSystem)/timeRunning,
utils.nItems(world.threadsSpawned, 'thread', 'spawned'),
activeThreads))
mem = None