Alon Bar-Lev has uploaded a new change for review. Change subject: core: config: fix [environment:default] handling ......................................................................
core: config: fix [environment:default] handling Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=990518 Change-Id: Iab14facc70580c246b34448e42aa62fbd8e1273d Signed-off-by: Alon Bar-Lev <[email protected]> --- M src/plugins/otopi/core/config.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/23/17823/1 diff --git a/src/plugins/otopi/core/config.py b/src/plugins/otopi/core/config.py index 1231b28..de37b08 100644 --- a/src/plugins/otopi/core/config.py +++ b/src/plugins/otopi/core/config.py @@ -72,7 +72,7 @@ exception=e, ) ) - if True or override: + if override: self.environment[name] = value else: self.environment.setdefault(name, value) -- To view, visit http://gerrit.ovirt.org/17823 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iab14facc70580c246b34448e42aa62fbd8e1273d Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
