summaryrefslogtreecommitdiffstats
path: root/func
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-15 19:15:59 +0300
committermakkalot <makkalot@gmail.com>2008-06-15 19:15:59 +0300
commita041a0d7eb7848825512ce8a6ae8243710356dfb (patch)
treebcda6954406208b241e30c4222f7f4dede57f30c /func
parent3bbc0f1d9a588ea0416dce9acb07de77efab51c0 (diff)
downloadthird_party-func-a041a0d7eb7848825512ce8a6ae8243710356dfb.tar.gz
third_party-func-a041a0d7eb7848825512ce8a6ae8243710356dfb.tar.xz
third_party-func-a041a0d7eb7848825512ce8a6ae8243710356dfb.zip
forgot to add order keyword to basic allowed types so couldnt pass the tests :)
Diffstat (limited to 'func')
-rw-r--r--func/minion/func_arg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/func/minion/func_arg.py b/func/minion/func_arg.py
index 8ca460a..bf07f1e 100644
--- a/func/minion/func_arg.py
+++ b/func/minion/func_arg.py
@@ -32,7 +32,8 @@ class ArgCompatibility(object):
'max_length':0,
'validator':'',
'type':'',
- 'default':None #its type is unknown
+ 'default':None, #its type is unknown,
+ 'order':0
}
def __init__(self,get_args_result):