Add a blacklist of suffixes for the client mixin to print out

This commit is contained in:
Thomas Jackson 2015-01-09 13:07:59 -08:00
parent 8ce214c03f
commit c2c396a48e

View File

@ -332,6 +332,10 @@ class AsyncClientMixin(object):
'''
Print all of the events with the prefix 'tag'
'''
# some suffixes we don't want to print
if suffix in ('new', ):
return
# TODO: clean up this event print out. We probably want something
# more general, since this will get *really* messy as
# people use more events that don't quite fit into this mold