Skip to content

Commit

Permalink
Allow spaces in file-names (temporary)
Browse files Browse the repository at this point in the history
  • Loading branch information
sundhaug92 committed Jan 22, 2024
1 parent 0eed1aa commit f5670fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/validator/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
all_valid = True
for checklist in glob.glob('*/*/checklist.json'):
if ' ' in checklist:
print(checklist, 'FILENAME', 'HAS SPACE')
file_ok = False
all_valid = False
print(checklist, 'FILENAME', 'HAS SPACE (OPTIONAL)')
# file_ok = False
# all_valid = False
j = json.load(open(checklist))
file_ok = True
for main_key in main_key_fields:
Expand Down

0 comments on commit f5670fb

Please sign in to comment.