Everytime we add a new option to the config file, we need to adjust our config files. Even if we dont need this new option. To improve that, we should define [fallback-values](https://docs.python.org/3/library/configparser.html#fallback-values) for most of the options (there were it makes sense). Current implementation: `scmcommand = generalsection['ScmCommand']` Implementation with fallback values: `scmcommand = generalsection.get('ScmCommand', "lscm")`