Remove some unnecessary print statements

This commit is contained in:
Matthew Jones 2015-02-09 14:24:36 -05:00
parent e9e4c6856d
commit da5f518a65

View File

@ -133,9 +133,7 @@ def notification_handler(server):
'type': 'event',
}
for session_id, socket in list(server.sockets.iteritems()):
print("Going to emit an event, here are our sessions: %s" % valid_sockets)
if session_id in valid_sockets:
print("Sending to session: %s" % str(session_id))
socket.send_packet(packet)
class Command(NoArgsCommand):