move bands and bookmarks to the config, too

This commit is contained in:
Jakob Ketterl
2019-12-08 21:00:01 +01:00
parent 3b32dc37c8
commit 5c8da76d9a
4 changed files with 29 additions and 10 deletions

View File

@ -134,7 +134,7 @@ class PropertyManager(object):
return self
def loadConfig(self):
for file in ["/etc/config_webrx.py", "./config_webrx.py"]:
for file in ["/etc/openwebrx/config_webrx.py", "./config_webrx.py"]:
try:
spec = importlib.util.spec_from_file_location("config_webrx", file)
cfg = importlib.util.module_from_spec(spec)