renaming the toplevel geni/ package into sfa/
[sfa.git] / wsdl / apistub.py
index fdd96bc..198883f 100644 (file)
@@ -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)