diff --git a/apps/chat/consumers.py b/apps/chat/consumers.py index 576717f..e0d0d07 100644 --- a/apps/chat/consumers.py +++ b/apps/chat/consumers.py @@ -40,7 +40,6 @@ class ChatConsumer(AsyncWebsocketConsumer): async def chat_message(self, event): ''' Recibimos informaciĆ³n de la sala ''' - print(self.channel_layer.group_channels('chat_python')) name = event["name"] text = event["text"]