diff --git a/scripts/modules/bpy/utils/__init__.py b/scripts/modules/bpy/utils/__init__.py index 86e7ee54a4b..54ac68002e0 100644 --- a/scripts/modules/bpy/utils/__init__.py +++ b/scripts/modules/bpy/utils/__init__.py @@ -602,6 +602,9 @@ def _is_path_parent_of(parent_path, path): except ValueError: # Happens on Windows when paths don't have the same drive. pass + except PermissionError: + # When either of the paths don't have permissions to access. + pass return False