Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def defPaths(customSavePath):
# The database where the static EVE data from the datadump is kept.
# This is not the standard sqlite datadump but a modified version created by eos
# maintenance script
gameDB = os.path.join(pyfaPath, "eve.db")
gameDB = getattr(configforced, "gameDB", gameDB)
if not gameDB:
gameDB = os.path.join(pyfaPath, "eve.db")

# DON'T MODIFY ANYTHING BELOW
import eos.config
Expand Down
2 changes: 1 addition & 1 deletion service/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def getInstance(cls):

def __init__(self):
serviceHTMLExportDefaultSettings = {
"path" : config.pyfaPath + os.sep + 'pyfaFits.html',
"path" : config.savePath + os.sep + 'pyfaFits.html',
"minimal": False
}
self.serviceHTMLExportSettings = SettingsProvider.getInstance().getSettings(
Expand Down