[entropy.core] fix regression in configuration file parsing (repositories.conf).

Parse product and branch before any other parameter.
This commit is contained in:
Fabio Erculiani
2010-11-17 08:38:20 +01:00
parent d81980027a
commit 126820a68b
+2
View File
@@ -1274,6 +1274,8 @@ class SystemSettings(Singleton, EntropyPluginStore):
key, value = entropy.tools.extract_setting(line)
if key is None:
continue
if key not in ("product", "branch"):
continue
func = settings_map.get(key)
if func is None: