From a799ec97548eb76bf2851500ad90c57b3dcde305 Mon Sep 17 00:00:00 2001 From: Derek Higgins <derekh@redhat.com> Date: Mon, 25 Feb 2013 17:39:05 -0500 Subject: [PATCH] Fixing _handleGroupCondition the return value was removed in a recent patch Change-Id: Ib2e299b0b8d1f602354346e190c17f11b8142dbc --- packstack/installer/run_setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packstack/installer/run_setup.py b/packstack/installer/run_setup.py index f841b6d4c..aa327ec6e 100644 --- a/packstack/installer/run_setup.py +++ b/packstack/installer/run_setup.py @@ -312,6 +312,7 @@ def _handleGroupCondition(config, conditionName, conditionValue): else: # Any other type is invalid raise TypeError("%s type (%s) is not supported" % (conditionName, type(conditionName))) + return conditionValue def _loadParamFromFile(config, section, paramName):