diff --git a/configure.py b/configure.py index 989388fd..8b4a29c7 100755 --- a/configure.py +++ b/configure.py @@ -456,9 +456,9 @@ def on_weatherping_click(self): self.more_config_window.show() def on_open_theme_folder_click(self): - path = f'"{MAIN_DIRECTORY}res/themes"' + path = f'{MAIN_DIRECTORY}res/themes' if platform.system() == "Windows": - os.startfile(path) + os.startfile(f'"{path}"') elif platform.system() == "Darwin": subprocess.Popen(["open", path]) else: