From: Barış Metin Date: Wed, 16 Dec 2009 12:06:07 +0000 (+0000) Subject: the first argument to Parameter needs to be a type X-Git-Tag: sfa-0.9-7~113 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3f8968efcfd6badf007cf013687fbc9fc0a4f246;p=sfa.git the first argument to Parameter needs to be a type --- diff --git a/sfa/methods/get_gids.py b/sfa/methods/get_gids.py index 6a5fe699..119b7834 100644 --- a/sfa/methods/get_gids.py +++ b/sfa/methods/get_gids.py @@ -29,7 +29,7 @@ class get_gids(Method): accepts = [ Parameter(str, "Certificate string"), Mixed(Parameter(str, "Human readable name (hrn)"), - Parameter([str], "List of Human readable names (hrn)")), + Parameter(type([str]), "List of Human readable names (hrn)")), Mixed(Parameter(str, "Request hash"), Parameter(None, "Request hash not specified")) ]