From 7fec7ec740fb34f09a232b98ebe96c4d06dc32fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l-Kristian=20Hamre?= Date: Thu, 31 Jul 2025 22:57:31 +0200 Subject: [PATCH] Correct url. --- export_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export_image.py b/export_image.py index 3f163db..3e59e24 100644 --- a/export_image.py +++ b/export_image.py @@ -19,7 +19,7 @@ def export_image(url_path, filename_prefix): os.makedirs(OUTPUT_DIR, exist_ok=True) - base_url = "http://localhost" + base_url = "https://rstat.net" # Ensure the URL path starts correctly url_path = url_path.lstrip("/") url = f"{base_url}/{url_path}"