From 1342db6cf2e7cb3c20c1f2a8954922b12b8a798a Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Mon, 1 Nov 2010 15:30:08 +0100 Subject: [PATCH] Tell sqlite to stop caring about threads, we'll do that ourselves. THANK YOU, GET THE FUCK OUT OF MY WAY. --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 55c79880e..dccedd957 100644 --- a/config.py +++ b/config.py @@ -20,5 +20,5 @@ import eos.config #Caching modifiers, disable all gamedata caching, its unneeded. eos.config.gamedataCache = None # saveddata db location modifier, shouldn't ever need to touch this -eos.config.saveddata_connectionstring = "sqlite:///" + saveddata -eos.config.gamedata_connectionstring = "sqlite:///" + gamedata +eos.config.saveddata_connectionstring = "sqlite:///" + saveddata + "?check_same_thread=False" +eos.config.gamedata_connectionstring = "sqlite:///" + gamedata + "?check_same_thread=False"