From 19a229c595e486e69eeeaf373e52d6c884fa1aff Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 2 Apr 2023 10:05:29 +0900 Subject: [PATCH] test --- renderer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renderer.py b/renderer.py index a0a807d..d2ea6fa 100644 --- a/renderer.py +++ b/renderer.py @@ -682,11 +682,11 @@ def render_routes(): # Get a list of all Route ID's to iterate through: all_routes_id_list = [] for route in all_routes["routes"]: + all_routes_id_list.append(route["id"]) if route["machine"]["name"]: - all_routes_id_list.append(route["id"]) app.logger.info("Found route %s / machine: %s", str(route["id"]), route["machine"]["name"]) else: - app.logger.info("Route id %s has no machine associated. Skipping", str(route["id"])) + app.logger.info("Route id %s has no machine associated.", str(route["id"])) route_content = ""