From d8f6548626ab0f896569c3dabcebcc8cae76392d Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 3 Aug 2023 14:34:49 +0200 Subject: [PATCH] Typos --- camisatoshi_wordpress_reports/controllers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/camisatoshi_wordpress_reports/controllers.py b/camisatoshi_wordpress_reports/controllers.py index 25c3d9d..92a7e4c 100644 --- a/camisatoshi_wordpress_reports/controllers.py +++ b/camisatoshi_wordpress_reports/controllers.py @@ -22,14 +22,14 @@ logger = logging.getLogger() def check_health(): logger.info( - f"Connecting to the configured woocomerce at {API_CONFIG['URL']}" + f"Connecting to the configured WooCommerce at {API_CONFIG['URL']}" ) try: api_reported_version = WC_API.get("").json()["namespace"] except: raise ConnectionError( - "There was an issue connecting to the woocomerce API." + "There was an issue connecting to the WooCommerce API." ) logger.info(f"Informed version of the API: {API_CONFIG['VERSION']}")