From ff31310d5b85dffecf1d3ba39965447d59488e02 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 19 Oct 2012 20:11:32 -0400 Subject: [PATCH] fix type error --- sfa/methods/Shutdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfa/methods/Shutdown.py b/sfa/methods/Shutdown.py index e532d1dc..53c406dc 100644 --- a/sfa/methods/Shutdown.py +++ b/sfa/methods/Shutdown.py @@ -13,7 +13,7 @@ class Shutdown(Method): interfaces = ['aggregate', 'slicemgr'] accepts = [ Parameter(str, "Slice URN"), - Parameter(dict, "Credentials"), + Parameter(type([dict]), "Credentials"), ] returns = Parameter(bool, "Success or Failure") -- 2.47.0