瀏覽代碼

Fix modelschema.schema_list()

* Fix glob path, since :
    ipdb> print '{}/*/*/schemas/*.yaml'.format(_get_base_dir())
    /usr/share/salt-formulas/env/*/*/schemas/*.yaml
    Process empty list:
    ipdb> print schemas
    []

Change-Id: I6ad048cb601baea9282e3c2a30fb79fdddd1ee0b
pull/70/merge
azvyagintsev 7 年之前
父節點
當前提交
0d683713df
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      _modules/modelschema.py

+ 1
- 1
_modules/modelschema.py 查看文件

@@ -70,7 +70,7 @@ def schema_list():

"""
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', '')

Loading…
取消
儲存