diff options
Diffstat (limited to 'labbot/config.py')
-rw-r--r-- | labbot/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/labbot/config.py b/labbot/config.py index 07c4d48..3574760 100644 --- a/labbot/config.py +++ b/labbot/config.py @@ -41,6 +41,10 @@ class Config: # write the hardcoded config data ontop of the loaded data self.settings["GLOBAL"].update(global_data) + + repo = self.settings.pop("REPO") + if repo: + self.settings["PROJECT"] = repo except (IOError, ValueError): pass |