summaryrefslogtreecommitdiffstats
path: root/func/minion/func_arg.py
diff options
context:
space:
mode:
Diffstat (limited to 'func/minion/func_arg.py')
-rw-r--r--func/minion/func_arg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/minion/func_arg.py b/func/minion/func_arg.py
index 6c416e4..5025e17 100644
--- a/func/minion/func_arg.py
+++ b/func/minion/func_arg.py
@@ -134,7 +134,7 @@ class ArgCompatibility(object):
#get the arguments from real object we have [args],*arg,**kwarg,[defaults]
tmp_arguments=inspect.getargspec(getattr(cls,method_name))
check_args=[arg for arg in chain(tmp_arguments[0],tmp_arguments[1:3]) if arg and arg!='self']
- print "The arguments taken from the inspect are :",check_args
+ #print "The arguments taken from the inspect are :",check_args
#the size may change of the hash so should a copy of it
copy_arguments = arguments.copy()
for compare_arg in copy_arguments.iterkeys():