Choices should be a list, not a string

reviewable/pr18001/r3
Matt Martz 9 years ago committed by John Barker
parent a103f81513
commit 3d2c5f3016

@ -4,7 +4,7 @@ option_schema = Schema(
{
Required('description'): Any(basestring, [basestring]),
'required': bool,
'choices': Any(list, basestring),
'choices': list,
'aliases': list,
'version_added': Any(basestring, float)
},

Loading…
Cancel
Save