1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 06:51:10 +03:00

missing f"" on log statement

This commit is contained in:
chris meyers 2020-05-04 15:57:56 -04:00
parent cd15a5c082
commit ba7e2c9bc4

View File

@ -104,7 +104,7 @@ class BroadcastConsumer(AsyncJsonWebsocketConsumer):
logger.info(f"client '{self.channel_name}' joined the broadcast group.")
async def disconnect(self, code):
logger.info("client '{self.channel_name}' disconnected from the broadcast group.")
logger.info(f"client '{self.channel_name}' disconnected from the broadcast group.")
await self.channel_layer.group_discard(settings.BROADCAST_WEBSOCKET_GROUP_NAME, self.channel_name)
async def internal_message(self, event):