From ba30c96c01b84fbb1d1424929e729937ee8ea92d Mon Sep 17 00:00:00 2001 From: Lili Date: Sat, 10 Feb 2024 11:49:09 +0100 Subject: [PATCH] warning improvement --- tlapbot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlapbot/__init__.py b/tlapbot/__init__.py index ea3c15c..d1be370 100644 --- a/tlapbot/__init__.py +++ b/tlapbot/__init__.py @@ -39,7 +39,7 @@ def create_app(test_config=None): # Check for spaces in redeems (they won't work) for redeem in app.config['REDEEMS']: if ' ' in redeem: - app.logger.warning(f"Redeem {redeem} has spaces in its name.") + app.logger.warning(f"Redeem '{redeem}' has spaces in its name.") app.logger.warning("Redeems with spaces are impossible to redeem.")