adjust name of sqlite file bc withsqlite will add the extension

This commit is contained in:
James Vasile 2013-02-09 13:28:52 -05:00
parent 5612316128
commit f80e30342d

2
cfg.py
View File

@ -38,3 +38,5 @@ html_root = None
main_menu = Menu()
base_href = ""
if store_file.endswith(".sqlite3"):
store_file = os.path.splitext(store_file)[0]