From 48217dd63efea44513a55d4e267601c608c5ca8e Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 10 Dec 2019 18:26:57 -0500 Subject: [PATCH] Fixed an error in game configuration path. --- libstormgames.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstormgames.py b/libstormgames.py index 752eca3..fbe33d5 100755 --- a/libstormgames.py +++ b/libstormgames.py @@ -80,7 +80,7 @@ def initialize_gui(gameTitle): global globalPath global gamePath globalPath = BaseDirectory.xdg_config_home + "/storm-games" - gamePath = globalPath + "/" + str.lower(str.replace(gameTitle, " ", "-") + "config") + gamePath = globalPath + "/" + str.lower(str.replace(gameTitle, " ", "-") + "/config") globalPath = globalPath + "/config" if not os.path.exists(gamePath): os.makedirs(gamePath) # Seed the random generator to the clock