Skip to content

Commit ef17da1

Browse files
committed
Quick fix to return instead of raise exception
1 parent 95fa3dd commit ef17da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sandbox/studio/plugins/texture_processor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _find_maketx():
3333
project = studio.current_project()
3434

3535
if project is None:
36-
raise Exception('No project is opened')
36+
return
3737

3838
scene = project.get_scene()
3939
textures = get_textures(scene)

0 commit comments

Comments
 (0)