summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-22 16:13:58 +0300
committermakkalot <makkalot@gmail.com>2008-06-22 16:13:58 +0300
commit2cf7e75d505b9db2724d6d063db3aaee5c799de7 (patch)
tree0e0607811ef4da252f0e853349de90d1c4e06d62
parentae9a0944730248cca031e8e4fc1a6a691a55c24c (diff)
downloadfunc-2cf7e75d505b9db2724d6d063db3aaee5c799de7.tar.gz
func-2cf7e75d505b9db2724d6d063db3aaee5c799de7.tar.xz
func-2cf7e75d505b9db2724d6d063db3aaee5c799de7.zip
the ugly print message that fills all the screen :)
-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():