mirror of https://github.com/ecmwf/eccodes.git
MEMFS: more descriptive message
This commit is contained in:
parent
32fb8bd28b
commit
e321fbca05
2
memfs.py
2
memfs.py
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue