From bae0d1902b850477168fadbae508c004c39557f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A5l-Kristian=20Hamre?= Date: Tue, 29 Jul 2025 21:55:15 +0200 Subject: [PATCH] No HTTPS lol. --- export_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export_image.py b/export_image.py index 6ebd34b..6d66a51 100644 --- a/export_image.py +++ b/export_image.py @@ -19,7 +19,7 @@ def export_image(url_path, filename_prefix): # 1. Ensure the output directory exists os.makedirs(OUTPUT_DIR, exist_ok=True) - base_url = "https://localhost:5000" + base_url = "http://localhost:5000" url = f"{base_url}/{url_path}" # 2. Construct the full output path including the new directory