From 9db5e4d88f6a5efc2a3cf775bc21128a9d803448 Mon Sep 17 00:00:00 2001 From: Flo Greistorfer Date: Tue, 9 Jul 2024 08:59:56 +0200 Subject: [PATCH] removed reduntand slash --- builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder.py b/builder.py index e22e5c7..e31c30d 100755 --- a/builder.py +++ b/builder.py @@ -151,7 +151,7 @@ def webmanifest(_args: Args) -> None: continue with Image.open(os.path.join(STATIC_FILES_DIR, "icons", icon)) as iconfile: iconsize = f"{iconfile.size[0]}x{iconfile.size[1]}" - icons.append({"src": f"{_args.web_root_url}/.static/icons/{icon}", "sizes": iconsize, "type": "image/png"}) + icons.append({"src": f"{_args.web_root_url}.static/icons/{icon}", "sizes": iconsize, "type": "image/png"}) if len(icons) == 0: print("No icons found in the static/icons folder!") return