We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cbf80 commit fc5d9e7Copy full SHA for fc5d9e7
.gitignore
@@ -0,0 +1,2 @@
1
+/.project
2
+/.pydevproject
django_socketio/events.py
@@ -46,7 +46,7 @@ def handler_with_channel(handler):
46
if not self.supports_channels:
47
raise EventError("The %s event does not support channels so "
48
"the handler `%s` could not be registered" %
49
- self.name, handler.__name__)
+ (self.name, handler.__name__))
50
channel = re.compile(channel)
51
self.handlers.append((handler, channel))
52
0 commit comments