Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-05-12 09:54:51 +00:00
commit 47ab8e33a0

View file

@ -12,7 +12,7 @@ def _get_files(path, filestem, idl):
ls = os.listdir(path) ls = os.listdir(path)
# Clean up file list # Clean up file list
files = list(filter(lambda x: x.startswith(filestem), ls)) files = list(filter(lambda x: x.startswith(filestem + "."), ls))
if not files: if not files:
raise Exception('No files starting with', filestem, 'in folder', path) raise Exception('No files starting with', filestem, 'in folder', path)