mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
use BaseException
This commit is contained in:
parent
fce4e6e3d8
commit
c393105e25
1 changed files with 1 additions and 1 deletions
|
|
@ -646,7 +646,7 @@ def create_qthread(func, *args, **kwargs):
|
|||
def run(self):
|
||||
try:
|
||||
func(*args, **kwargs)
|
||||
except:
|
||||
except BaseException:
|
||||
traceback.print_exception(*sys.exc_info())
|
||||
raise
|
||||
return Thread()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue