From b9ffe1877569da931de3424dbe7b19322672700c Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 28 Jan 2014 13:14:33 -0500 Subject: [PATCH] Fix for savePath config --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 7b907f946..7f47ab871 100644 --- a/config.py +++ b/config.py @@ -44,7 +44,7 @@ def defPaths(): if savePath is None: savePath = os.path.join(pyfaPath, "saveddata") else: - savePath = getattr(configforced, "savePath", None) + savePath = getattr(configforced, "savePath", savePath) if savePath is None: savePath = unicode(os.path.expanduser(os.path.join("~", ".pyfa")), sys.getfilesystemencoding())