From: Daniel Hokka Zakrisson Date: Mon, 19 Jan 2009 21:22:17 +0000 (+0000) Subject: Return the value from the API. X-Git-Tag: BootManager-3.2-16~3 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8df86d992ba79f88065e547bc4230ff72e4b2d35;p=bootmanager.git Return the value from the API. --- diff --git a/source/steps/WriteNetworkConfig.py b/source/steps/WriteNetworkConfig.py index 2ab86ae..e3239b1 100644 --- a/source/steps/WriteNetworkConfig.py +++ b/source/steps/WriteNetworkConfig.py @@ -22,7 +22,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)