Skip to content
Commits on Source (2)
......@@ -5,6 +5,8 @@ import os
ui_path = os.path.dirname(os.path.abspath(__file__))
for root, folders, files in os.walk(ui_path):
if ".history" in folders:
folders.remove(".history")
for file in files:
file = os.path.join(root, file)
outfile, ext = os.path.splitext(file)
......
......@@ -26,10 +26,10 @@ cfg.init(
comment="history of systems.json download paths",
)
cfg.init(
"history.out_path",
"history.stars_csv_path",
[],
"path_list",
comment="history of output paths (stars.csv and precomputed graphs)",
comment="history of paths for stars.csv",
)
cfg.init("route.range", 7.56, comment="jump range")
cfg.init("route.primary", False, comment="only route through primary stars")
......