From d71b0af026c8a4a006cc2a3653af621444acad93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Wed, 24 Jul 2024 21:43:46 +0200 Subject: [PATCH] Fix warning message --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 42b82bf..7c501d4 100644 --- a/run.py +++ b/run.py @@ -1535,7 +1535,7 @@ async def github(request): # (which also allows to only enable this feature if we define the webhook secret) if app.config.GITHUB_WEBHOOK_SECRET is None: api_logger.info( - f"Received a webhook but no ./github_webhook_secret or ./github_bot_token file exists ... ignoring" + "Received a webhook but no settings GITHUB_WEBHOOK_SECRET or GITHUB_BOT_TOKEN... ignoring" ) return response.json({"error": "GitHub hooks not configured"}, 403)