commit | 380c6abcc6ee3e7272580f7124d9f63e0829b24d | [log] [tgz] |
---|---|---|
author | mcp-jenkins <mcp-jenkins@mirantis.com> | Mon Dec 18 14:23:51 2017 +0000 |
committer | Gerrit Code Review <gerrit2@e9aa877068d1> | Mon Dec 18 14:23:51 2017 +0000 |
tree | 36483114395703c17b5a3a62a32b153c89f630ea | |
parent | b347eaf066f161d1998752d1ea9accec4beaa638 [diff] | |
parent | 0d683713df8d941c775ed68bcd0e7084e1e4253c [diff] |
Merge "Fix modelschema.schema_list()"
diff --git a/_modules/modelschema.py b/_modules/modelschema.py index 3a67bc9..cb45153 100644 --- a/_modules/modelschema.py +++ b/_modules/modelschema.py
@@ -70,7 +70,7 @@ """ output = {} - schemas = glob.glob('{}/*/*/schemas/*.yaml'.format(_get_base_dir())) + schemas = glob.glob('{}/*/schemas/*.yaml'.format(_get_base_dir())) for schema in schemas: if os.path.exists(schema): role_name = schema.split('/')[-1].replace('.yaml', '')