From ff9343a5ab82912d715003212adeca4a3a1aeba9 Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 3 Jan 2021 02:06:21 +0100 Subject: [PATCH] added error handling, changed something --- app.py | 7 +++++-- templates/index.html | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app.py b/app.py index 99a93668..4f4bed22 100644 --- a/app.py +++ b/app.py @@ -7,5 +7,8 @@ def main(): @app.route('/submit_kanji', methods=['GET']) def submit_kanji(): - with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file: - return render_template('index.html', svg=file.read()) \ No newline at end of file + try: + with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file: + return render_template('index.html', svg=file.read()) + except: + return render_template('index.html', svg="no") \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 4cefe1ea..4959d0ec 100644 --- a/templates/index.html +++ b/templates/index.html @@ -40,7 +40,7 @@