Removed the test if saveddata.db exists, sqlalchemy checks it anyway

This commit is contained in:
HomeWorld
2010-10-07 13:37:32 +03:00
parent 14399ff2c0
commit cc2d9a9391

3
run.py
View File

@@ -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()