From cc2d9a93913e8290ba8492c976e958e19b4a145b Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Thu, 7 Oct 2010 13:37:32 +0300 Subject: [PATCH] Removed the test if saveddata.db exists, sqlalchemy checks it anyway --- run.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run.py b/run.py index ca02c8bb3..f6f4feb92 100644 --- a/run.py +++ b/run.py @@ -30,8 +30,7 @@ if __name__ == "__main__": if not os.path.exists(config.homePath): os.mkdir(config.homePath) - if not os.path.exists(config.saveddata): - eos.db.saveddata_meta.create_all() + eos.db.saveddata_meta.create_all() pyfa = wx.App(False) MainFrame()