From 2913c51518809e7e120a133f2aabe9668007f954 Mon Sep 17 00:00:00 2001 From: shtlrs Date: Thu, 9 Mar 2023 15:51:44 +0100 Subject: replace . with _ when mapping webhook ids --- botstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'botstrap.py') diff --git a/botstrap.py b/botstrap.py index 4b00be9aa..2b34dad81 100644 --- a/botstrap.py +++ b/botstrap.py @@ -159,6 +159,6 @@ with DiscordClient() as discord_client: webhook_id = create_webhook(webhook_name, webhook_channel_id, client=discord_client) else: webhook_id = webhook_model.id - config_str += f"webhooks_{webhook_name}.id={webhook_id}\n" + config_str += f"webhooks_{webhook_name}_id={webhook_id}\n" env_file_path.write_text(config_str) -- cgit v1.2.3