Possibly fixed unhandled namespace.

This commit is contained in:
Joey Payne 2016-01-26 16:35:11 -07:00
commit 8337e7bae6

View file

@ -274,7 +274,7 @@ class SocketIO(object):
def _process_packet(self, packet):
code, packet_id, path, data = packet
namespace = self.get_namespace(path)
namespace = self.get_namespace(path or '')
delegate = self._get_delegate(code)
delegate(packet, namespace._find_event_callback)