X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=wsdl%2Fapistub.py;h=198883f0c1ff33da13369c279877dd95a34868f8;hb=48962274f4516dec87774eee0e51d9fd302d8da5;hp=fdd96bc4f07210243454d589e4f09ff2da4a7172;hpb=dfa6244782d2dd86c99b8ff019908b24b76ad76d;p=sfa.git diff --git a/wsdl/apistub.py b/wsdl/apistub.py index fdd96bc4..198883f0 100644 --- a/wsdl/apistub.py +++ b/wsdl/apistub.py @@ -1,11 +1,11 @@ -import geni.methods +import sfa.methods -methods = geni.methods.all +methods = sfa.methods.all def callable(method): classname = method.split(".")[-1] - module = __import__("geni.methods." + method, globals(), locals(), [classname]) + module = __import__("sfa.methods." + method, globals(), locals(), [classname]) callablemethod = getattr(module, classname)(None) return getattr(module, classname)(None)