ignore logger and measure functions when showing stats

master
mutantmonkey 2012-02-18 03:28:22 -05:00
parent 2820bc61d6
commit be18cfe02a
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def stats(phenny, input):
users = {}
channels = {}
ignore = set(['f_note', 'startup', 'message', 'noteuri'])
ignore = set(['f_note', 'startup', 'message', 'noteuri', 'logger', 'snarfuri', 'measure'])
for (name, user), count in list(phenny.stats.items()):
if name in ignore: continue
if not user: continue