From d04691cb9a607618909ad4f7c2a3d935b3949f8b Mon Sep 17 00:00:00 2001 From: Dave Cunningham Date: Tue, 22 Mar 2016 15:20:38 -0400 Subject: [PATCH] Fix expandybird validation --- expansion/schema_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expansion/schema_validation.py b/expansion/schema_validation.py index eac832bcd..cb9d88996 100644 --- a/expansion/schema_validation.py +++ b/expansion/schema_validation.py @@ -128,7 +128,7 @@ def Validate(properties, schema_name, template_name, imports): if properties is None: properties = {} - schema = yaml.safe_load(raw_schema) + schema = yaml.safe_load(raw_schema['content']) # If the schema is empty, do nothing. if not schema: