From 8e4f798ca36d1214df4f58985b08d60215cbaffb Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Fri, 28 Jun 2024 14:45:09 -0400 Subject: [PATCH] Print error --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 6a8d17b..5e223d4 100755 --- a/app.py +++ b/app.py @@ -55,7 +55,8 @@ def latLngToHash(lat, lng): three = these.three_words(lat,lng) six = these.six_words(lat,lng) return {'three': three, 'six': six} - except: + except Exception as error: + print(error) return {}