Skip to content

Commit

Permalink
Fix f-string error in Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Jan 25, 2025
1 parent f3f5e9b commit 659f0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bobuild/win_server_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ async def main_task(
if items_needing_update:
service.log_info(f"items needing update/install: {items_needing_update}")
desc = ("Updating/installing the following Workshop items: "
f"{", ".join(str(x) for x in items_needing_update)}")
f'{", ".join(str(x) for x in items_needing_update)}')
await send_webhook(
url=discord_config.server_service_webhook_url,
embed_title=embed_title,
Expand Down

0 comments on commit 659f0f8

Please sign in to comment.