Commit de153ba7 by Jörg Stucke

refactoring

parent d80ad339
...@@ -223,8 +223,6 @@ def _iterate_path_recursively(path: Path, include_symlinks: bool = True, include ...@@ -223,8 +223,6 @@ def _iterate_path_recursively(path: Path, include_symlinks: bool = True, include
if path.is_symlink(): if path.is_symlink():
if include_symlinks and (path.is_file() or path.is_dir()): if include_symlinks and (path.is_file() or path.is_dir()):
yield path yield path
else:
yield from []
elif path.is_file(): elif path.is_file():
yield path yield path
elif path.is_dir(): elif path.is_dir():
...@@ -234,7 +232,6 @@ def _iterate_path_recursively(path: Path, include_symlinks: bool = True, include ...@@ -234,7 +232,6 @@ def _iterate_path_recursively(path: Path, include_symlinks: bool = True, include
yield from _iterate_path_recursively(child_path, include_symlinks, include_directories) yield from _iterate_path_recursively(child_path, include_symlinks, include_directories)
except PermissionError: except PermissionError:
logging.error('Permission Error: could not access path {path}'.format(path=path.absolute())) logging.error('Permission Error: could not access path {path}'.format(path=path.absolute()))
yield from []
except OSError: except OSError:
logging.warning('possible broken symlink: {path}'.format(path=path.absolute())) logging.warning('possible broken symlink: {path}'.format(path=path.absolute()))
yield from [] yield from []
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment