From 84ee53236aea915211189e63a82abaed169b253d Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Mon, 20 Nov 2023 21:33:43 +0100 Subject: [PATCH] fix: downloaded icons are not working (#15) --- download_icons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_icons.py b/download_icons.py index 754677f..a44ca70 100644 --- a/download_icons.py +++ b/download_icons.py @@ -26,4 +26,4 @@ for line in resfile.split("\n"): os.makedirs(os.path.dirname(local_path), exist_ok=True) with open(local_path, "wb") as f: - f.write(requests.get(f"https://binaries.eveonline.com/{path}").content) + f.write(requests.get(f"https://resources.eveonline.com/{path}").content)