소스 검색

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…
취소
저장