From 2c4817f1ee0f80ad4aae080099994fcec41a529b Mon Sep 17 00:00:00 2001 From: makkalot Date: Tue, 27 May 2008 13:38:12 +0300 Subject: does the arg comes with in a tuple --- func/minion/modules/func_module.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/func/minion/modules/func_module.py b/func/minion/modules/func_module.py index fd592c7..98d7266 100644 --- a/func/minion/modules/func_module.py +++ b/func/minion/modules/func_module.py @@ -89,6 +89,9 @@ class FuncModule(object): @param meth_name: the name of the method @retun : list or None """ + #is it a tuple ? + meth_name = method_name[0] + if not self.__is_public_valid_method(name): return {} -- cgit