You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check for ImportErrorhere that is used to fall back to Tkinter when pywin32 isn't available, does not work because ImportError is converted to PyWin32NotFoundhere.
This should be relatively easy to fix, by deriving ToolNotFound from ImportError rather than from Exceptionhere.
The text was updated successfully, but these errors were encountered:
The check for
ImportError
here that is used to fall back to Tkinter when pywin32 isn't available, does not work becauseImportError
is converted toPyWin32NotFound
here.This should be relatively easy to fix, by deriving
ToolNotFound
fromImportError
rather than fromException
here.The text was updated successfully, but these errors were encountered: