From a676d77f0a781948d42393c866fa848dd9beb602 Mon Sep 17 00:00:00 2001 From: anis Date: Sun, 24 Nov 2024 14:12:48 +0100 Subject: [PATCH] changed path unresolution --- compare_tools/Mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compare_tools/Mod.py b/compare_tools/Mod.py index 9d5b2ea..010c3b2 100644 --- a/compare_tools/Mod.py +++ b/compare_tools/Mod.py @@ -13,7 +13,7 @@ def __init__(self, mod_url): self.name = res[-1] self.owner = res[-2] - self.path = Path("mods_locale/" + self.name).resolve() + self.path = Path("mods_locale/" + self.name) self.path_en = self.path / "locale/en" if not os.path.exists(self.path_en):