From 4b6cfd62cc3633ea652fb368047afb7312ac21e8 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Fri, 23 Jun 2017 18:05:47 +0200 Subject: [PATCH] smarter exception test --- src/wolnelektury/views.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wolnelektury/views.py b/src/wolnelektury/views.py index 7573df5ff..c62c2e585 100644 --- a/src/wolnelektury/views.py +++ b/src/wolnelektury/views.py @@ -187,4 +187,8 @@ def widget(request): def exception_test(request): - raise Exception('Exception test') \ No newline at end of file + msg = request.GET.get('msg') + if msg: + raise Exception('Exception test: %s' % msg) + else: + raise Exception('Exception test') \ No newline at end of file -- 2.20.1