Skip to content

Commit

Permalink
Fix f-string (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
emontnemery authored Feb 28, 2022
1 parent 96eed07 commit 67a8014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pychromecast/socket_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ def send_message(
self.port,
)
else:
raise NotConnected("Chromecast {self.host}:{self.port} is connecting...")
raise NotConnected(f"Chromecast {self.host}:{self.port} is connecting...")

def send_platform_message(
self, namespace, message, inc_session_id=False, callback_function_param=False
Expand Down

0 comments on commit 67a8014

Please sign in to comment.