summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-08-11 13:06:07 +0300
committermakkalot <makkalot@gmail.com>2008-08-11 13:06:07 +0300
commit6fdb9885d9fbd86b53096bc596468a2d6108fc4a (patch)
treec0d92c40c482f148a85faec4111ce9b9c4c9c1be /func
parentd38bc5930bb933ebd4934bbfb4dddfeb7b5ea8e5 (diff)
downloadfunc-6fdb9885d9fbd86b53096bc596468a2d6108fc4a.tar.gz
func-6fdb9885d9fbd86b53096bc596468a2d6108fc4a.tar.xz
func-6fdb9885d9fbd86b53096bc596468a2d6108fc4a.zip
remove the hash** case from api we dont need it actually args* case is enough i think
Diffstat (limited to 'func')
-rw-r--r--func/minion/func_arg.py1
-rw-r--r--func/minion/modules/echo.py7
2 files changed, 0 insertions, 8 deletions
diff --git a/func/minion/func_arg.py b/func/minion/func_arg.py
index 2feed23..b405223 100644
--- a/func/minion/func_arg.py
+++ b/func/minion/func_arg.py
@@ -50,7 +50,6 @@ class ArgCompatibility(object):
'boolean':(),
'float':('range','min','max'),
'hash':('validator',),
- 'hash**':('validator',),
'list':('validator',),
'list*':('validator',),
}
diff --git a/func/minion/modules/echo.py b/func/minion/modules/echo.py
index a252b9c..ea79f62 100644
--- a/func/minion/modules/echo.py
+++ b/func/minion/modules/echo.py
@@ -57,13 +57,6 @@ class EchoTest(func_module.FuncModule):
return command
- def run_hash_star(self,**command):
- """
- Run hash
- """
-
- return command
-
def run_boolean(self,command):
"""