MEMFS: more descriptive message

This commit is contained in:
Shahram Najm 2019-10-08 20:51:41 +01:00
parent 32fb8bd28b
commit e321fbca05
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ for directory in dirs:
for dirpath, dirnames, files in os.walk(directory, followlinks=True):
for ex in EXCLUDED:
if ex in dirnames:
print('Note: %s/%s will not be included.' % (dirpath,ex))
print('Note: eccodes memfs.py script: %s/%s will not be included.' % (dirpath,ex))
# Prune the walk by modifying the dirnames in-place
dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED]