summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-05-27 14:23:46 +0300
committermakkalot <makkalot@gmail.com>2008-05-27 14:23:46 +0300
commitd50ecd9085106d753232ceb54ba41155775cdd67 (patch)
tree90b765a36db2cee80ce1fded5c656a1d76d9b5d7 /func
parent6bb831d276d22649ca80a0fb46f272596f8f81dc (diff)
downloadthird_party-func-d50ecd9085106d753232ceb54ba41155775cdd67.tar.gz
third_party-func-d50ecd9085106d753232ceb54ba41155775cdd67.tar.xz
third_party-func-d50ecd9085106d753232ceb54ba41155775cdd67.zip
i should take a break
Diffstat (limited to 'func')
-rw-r--r--func/minion/modules/func_module.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/func/minion/modules/func_module.py b/func/minion/modules/func_module.py
index 14fdbfe..56fd171 100644
--- a/func/minion/modules/func_module.py
+++ b/func/minion/modules/func_module.py
@@ -81,16 +81,15 @@ class FuncModule(object):
return True
return False
- def __get_method_args(self,meth_name):
+ def __get_method_args(self,name):
"""
Gives a list of arguments for particular given
method_name
- @param meth_name: the name of the method
+ @param name: the name of the method
@retun : list or None
"""
#is it a tuple ?
- #meth_name = meth_name[0]
if not self.__is_public_valid_method(name):
return {}