Skip to content

Commit 8564156

Browse files
committed
chore: add OSError to except clause in glob_path
1 parent 0acdd21 commit 8564156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/robotcode/core/utils/glob_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,5 @@ def _iter_files_recursive_re(
186186
):
187187
yield Path(f).absolute() if absolute else Path(f)
188188

189-
except PermissionError:
189+
except (OSError, PermissionError):
190190
pass

0 commit comments

Comments
 (0)