2
0
mirror of https://github.com/gradio-app/gradio.git synced 2025-03-31 12:20:26 +08:00

fix show_error

This commit is contained in:
dawoodkhan82 2021-10-26 06:44:38 -04:00
parent bcf46b225f
commit c0a146b717
2 changed files with 2 additions and 10 deletions

@ -1,8 +0,0 @@
import gradio as gr
def divide(num1):
return num1/0
iface = gr.Interface(fn=divide, inputs="number", outputs="number")
if __name__ == "__main__":
iface.launch(debug=True)

@ -178,11 +178,11 @@ def enable_sharing(path):
@login_check
def predict():
raw_input = request.json["data"]
# If in debug mode, capture any errors made and pipe to front end
# Capture any errors made and pipe to front end
if app.interface.show_error:
try:
prediction, durations = app.interface.process(raw_input)
except BaseException as error:
except BaseException:
traceback.print_exc()
return jsonify({"error": traceback.format_exc()}), 500
else: