fix an issue preventing the program from starting if the user specifies a bad gradio theme

This commit is contained in:
AUTOMATIC 2023-05-10 07:14:13 +03:00
parent 921dc4639b
commit d50b95b5a3

View File

@ -672,8 +672,8 @@ def reload_gradio_theme(theme_name=None):
else:
try:
gradio_theme = gr.themes.ThemeClass.from_hub(theme_name)
except requests.exceptions.ConnectionError:
print("Can't access HuggingFace Hub, falling back to default Gradio theme")
except Exception as e:
errors.display(e, "changing gradio theme")
gradio_theme = gr.themes.Default()