Return the values from the API.
authorDaniel Hokka Zakrisson <dhokka@cs.princeton.edu>
Mon, 19 Jan 2009 21:24:52 +0000 (21:24 +0000)
committerDaniel Hokka Zakrisson <dhokka@cs.princeton.edu>
Mon, 19 Jan 2009 21:24:52 +0000 (21:24 +0000)
source/steps/WriteNetworkConfig.py

index 7f89f81..6c3b2b8 100644 (file)
@@ -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)