Skip to content

Commit

Permalink
Update exception type
Browse files Browse the repository at this point in the history
  • Loading branch information
huntfx committed Sep 4, 2023
1 parent 0136358 commit 4de4a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vfxwindow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class NotImplementedApplicationError(ImportError, NotImplementedError):

inTerminal = runningInTerminal(startup=True)
if inTerminal is None:
raise NotImplementedError('gui not supported in terminal mode, launch nuke with the --tg flag instead')
raise NotImplementedApplicationError('gui not supported in terminal mode, launch nuke with the --tg flag instead')

if inTerminal:
from .nuke import NukeBatchWindow as VFXWindow
Expand Down

0 comments on commit 4de4a72

Please sign in to comment.