summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-15 19:05:09 +0300
committermakkalot <makkalot@gmail.com>2008-06-15 19:05:09 +0300
commit3bbc0f1d9a588ea0416dce9acb07de77efab51c0 (patch)
treefbb1cf20b4da3b8ee6de05532922a2ab4370c204
parent9419566c1968db33b1d9d50ba02921c5bbe98c16 (diff)
downloadfunc-3bbc0f1d9a588ea0416dce9acb07de77efab51c0.tar.gz
func-3bbc0f1d9a588ea0416dce9acb07de77efab51c0.tar.xz
func-3bbc0f1d9a588ea0416dce9acb07de77efab51c0.zip
fixing a silly mistake
-rw-r--r--func/minion/modules/func_module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/minion/modules/func_module.py b/func/minion/modules/func_module.py
index e66f410..53fd66b 100644
--- a/func/minion/modules/func_module.py
+++ b/func/minion/modules/func_module.py
@@ -104,7 +104,7 @@ class FuncModule(object):
self.arg_comp = ArgCompatibility(tmp_arg_dict)
#see if all registered arguments are there
for method in tmp_arg_dict.iterkeys():
- self.is_all_arguments_registered(self,method,tmp_arg_dict[method]['args'])
+ self.arg_comp.is_all_arguments_registered(self,method,tmp_arg_dict[method]['args'])
#see if the options that were used are OK..
self.arg_comp.validate_all()