diff --git a/src/config.py b/src/config.py --- a/src/config.py +++ b/src/config.py @@ -21,7 +21,8 @@ conf=dict() if os.path.isfile(configFile): with open(configFile) as f: conf=json.load(f) -version=(0,0,0) +version=[0,0,1] +lowestCompatible=[0,0,0] # tuple is more fitting but json conversion transforms it into a list anyway hosts=conf.get("hosts",["127.0.0.1"]) port=conf.get("port",9901)