From 71b64b8863da73e2c8cce4b65003f10f86094b57 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Mon, 19 Jan 2009 21:24:52 +0000 Subject: [PATCH] Return the values from the API. --- source/steps/WriteNetworkConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/steps/WriteNetworkConfig.py b/source/steps/WriteNetworkConfig.py index 7f89f81..6c3b2b8 100644 --- a/source/steps/WriteNetworkConfig.py +++ b/source/steps/WriteNetworkConfig.py @@ -25,7 +25,7 @@ class BootAPIWrap: def __init__(self, vars): self.vars = vars def call(self, func, *args): - BootAPI.call_api_function(self.vars, func, args) + return BootAPI.call_api_function(self.vars, func, args) def __getattr__(self, func): return lambda *args: self.call(func, *args) -- 2.43.0