Skip to content

Commit

Permalink
missing f"" on log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismeyersfsu committed May 4, 2020
1 parent cd15a5c commit ba7e2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/main/consumers.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def connect(self):
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):
Expand Down

0 comments on commit ba7e2c9

Please sign in to comment.