diff --git a/plugins/Status.py b/plugins/Status.py index fde73f583..6d3a64c0c 100644 --- a/plugins/Status.py +++ b/plugins/Status.py @@ -97,9 +97,10 @@ class Status(callbacks.Privmsg): activeThreads = threading.activeCount() response = ('I have taken %.2f seconds of user time and %.2f seconds ' 'of system time, for a total of %.2f seconds of CPU ' - 'time. %sOut of %s I have %s active.' % + 'time. %s' + 'I have spawned %s; I currently have %s still running.' % (user, system, user + system, children, - utils.nItems('thread', world.threadsSpawned, 'spawned'), + utils.nItems('thread', world.threadsSpawned), activeThreads)) mem = 'an unknown amount' pid = os.getpid()