Skip to content

Commit

Permalink
Merge "Allow Description in properties schema"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Aug 20, 2013
2 parents e409910 + a0d3536 commit 1623b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions heat/engine/properties.py
Expand Up @@ -22,11 +22,11 @@
SCHEMA_KEYS = (
REQUIRED, IMPLEMENTED, DEFAULT, TYPE, SCHEMA,
ALLOWED_PATTERN, MIN_VALUE, MAX_VALUE, ALLOWED_VALUES,
MIN_LENGTH, MAX_LENGTH,
MIN_LENGTH, MAX_LENGTH, DESCRIPTION,
) = (
'Required', 'Implemented', 'Default', 'Type', 'Schema',
'AllowedPattern', 'MinValue', 'MaxValue', 'AllowedValues',
'MinLength', 'MaxLength',
'MinLength', 'MaxLength', 'Description',
)

SCHEMA_TYPES = (
Expand Down

0 comments on commit 1623b03

Please sign in to comment.