mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-09 08:42:59 -04:00
parent
4661f2c1ea
commit
489badcea8
1 changed files with 2 additions and 2 deletions
|
|
@ -25,10 +25,10 @@ repository = {}
|
|||
|
||||
for root, dirs, files in os.walk(repository_dir):
|
||||
for file in files:
|
||||
if len(file) != 64:
|
||||
if len(file) != 69:
|
||||
continue
|
||||
|
||||
fp = open(root + file + ".repo", "r")
|
||||
fp = open(root + file, "r")
|
||||
repository_info = json.load(fp)
|
||||
fp.close()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue