Take the new doc out of the branch and into trunk
[nodemanager.git] / doc / DocBookLocal.py
diff --git a/doc/DocBookLocal.py b/doc/DocBookLocal.py
deleted file mode 100644 (file)
index be31df9..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-
-import api_calls
-
-def get_func_list():
-       api_function_list = []
-       for func in dir(api_calls):
-               try:
-                       f = api_calls.__getattribute__(func)
-                       if 'group' in f.__dict__.keys():
-                               api_function_list += [api_calls.__getattribute__(func)]
-               except:
-                       pass
-       return api_function_list