pause after printing exception

This commit is contained in:
Lincoln Stein 2023-06-07 07:26:14 -04:00
parent 96038bd075
commit d114833a12

View File

@ -857,7 +857,8 @@ def select_and_download_models(opt: Namespace):
try:
installApp.run()
except Exception as e:
print(str(e))
print(f'An exception has occurred: {str(e)}')
input('Press any key to continue...')
if hasattr(installApp,'main_form'):
form = installApp.main_form
if form.subprocess and form.subprocess.is_alive():