(name)
| 380 | def _post_process(self, paths, adjustable_paths, hashed_files): |
| 381 | # Sort the files by directory level |
| 382 | def path_level(name): |
| 383 | return len(name.split(os.sep)) |
| 384 | |
| 385 | for name in sorted(paths, key=path_level, reverse=True): |
| 386 | substitutions = True |