From: Daniel Hokka Zakrisson Date: Mon, 19 Jan 2009 21:24:52 +0000 (+0000) Subject: Return the values from the API. X-Git-Tag: BootManager-4.3-2~3 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=71b64b8863da73e2c8cce4b65003f10f86094b57 Return the values from the API. --- 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)