From a4054b8efe35fee8728ce2feae08a74ab6519d8e Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Tue, 17 Nov 2020 21:17:34 +0100 Subject: [PATCH] fix --- apps/chat/consumers.py | 1 - 1 file changed, 1 deletion(-) 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"]