From: Tony Mack Date: Sat, 20 Oct 2012 00:11:32 +0000 (-0400) Subject: fix type error X-Git-Tag: sfa-3.0-0~106 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ff31310d5b85dffecf1d3ba39965447d59488e02;p=sfa.git fix type error --- 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")