From c01cc39e207e0ac55052d86aff9137bb0d50e176 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Tue, 17 Jul 2018 23:38:37 +0200 Subject: [PATCH] Template tweak --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index eebdbc6..494fcee 100644 --- a/app.py +++ b/app.py @@ -284,6 +284,8 @@ def get_actor(url): return get_backend().fetch_iri(url) except (ActivityNotFoundError, ActivityGoneError): return f"Deleted<{url}>" + except Exception: + return f"Error<{url}>" @app.template_filter()