Skip to content

Commit 28e9511

Browse files
committed
Fixing Sentry.io OPENSHOT-5DR: [Errno 2] No such file or directory: 'blender'
1 parent 205d1fd commit 28e9511

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/windows/views/blender_listview.py

+4
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,10 @@ def blender_version_check(self):
800800
self.process.kill()
801801
self.blender_error_nodata.emit()
802802
return False
803+
except FileNotFoundError:
804+
log.warning("Blender executable not found. Please check the path.")
805+
self.blender_error_nodata.emit()
806+
return False
803807
except Exception:
804808
# Error running command. Most likely the blender executable path in
805809
# the settings is incorrect, or is not a supported Blender version

0 commit comments

Comments
 (0)