From bccb1d2805397ebfedb128ae584d7efc1a90a643 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Wed, 22 Mar 2017 20:17:15 -0700 Subject: [PATCH] update config (cherry picked from commit b18aecf) --- _development/helpers.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_development/helpers.py b/_development/helpers.py index 57adf04c3..1cfad6b9a 100644 --- a/_development/helpers.py +++ b/_development/helpers.py @@ -16,10 +16,10 @@ def DBInMemory(): import eos.config from os.path import realpath, join, dirname, abspath - debug = False - gamedataCache = True - saveddataCache = True - gamedata_version = "" + eos.config.debug = False + eos.config.gamedataCache = True + eos.config.saveddataCache = True + eos.config.gamedata_version = "" eos.config.gamedata_connectionstring = 'sqlite:///' + realpath(join(dirname(abspath(unicode(__file__))), "..", "eve.db")) # saveddata_connectionstring = 'sqlite:///' + unicode(realpath(join(dirname(abspath(__file__)), "..", "saveddata", "saveddata.db")), sys.getfilesystemencoding()) eos.config.saveddata_connectionstring = 'sqlite:///:memory:'