Skip to content

Commit

Permalink
Fixed path resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Green-Bat committed Jan 22, 2024
1 parent 5721a9b commit ae695dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SavefileManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class SavefileManager:
def __init__(self, root: Tk):
self.fileCount = 0
# load settings json
self.configPath = Path(__file__).parent.resolve() / "config"
self.configPath = Path().resolve() / "config"
self.settingsPath = self.configPath / "settings.json"
self.logpath = self.configPath / "log.log"
self.bak = self.configPath / "backups"
Expand Down

0 comments on commit ae695dd

Please sign in to comment.