Fix traceback related to undefined variable

Fixup after 68d8b21
Obsoletes PR #487
This commit is contained in:
Jakub Kadlcik 2024-01-28 13:46:35 +01:00 committed by Jakub Kadlčík
parent b9d6d2b96b
commit 5b05b611a7

View file

@ -98,7 +98,7 @@ class ConfigLoader(object):
# building, we may also load that and potentially override some global
# settings.
config = RawConfigParser()
config.read(filename)
config.read(self.tito_props_path)
self._check_legacy_globalconfig(config)
return config