mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
pause after printing exception
This commit is contained in:
@ -857,7 +857,8 @@ def select_and_download_models(opt: Namespace):
|
|||||||
try:
|
try:
|
||||||
installApp.run()
|
installApp.run()
|
||||||
except Exception as e:
|
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'):
|
if hasattr(installApp,'main_form'):
|
||||||
form = installApp.main_form
|
form = installApp.main_form
|
||||||
if form.subprocess and form.subprocess.is_alive():
|
if form.subprocess and form.subprocess.is_alive():
|
||||||
|
Reference in New Issue
Block a user