fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
058cbe2
)
smarter exception test
author
Jan Szejko
<janek37@gmail.com>
Fri, 23 Jun 2017 16:05:47 +0000
(18:05 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Fri, 23 Jun 2017 16:05:47 +0000
(18:05 +0200)
src/wolnelektury/views.py
patch
|
blob
|
history
diff --git
a/src/wolnelektury/views.py
b/src/wolnelektury/views.py
index
7573df5
..
c62c2e5
100644
(file)
--- a/
src/wolnelektury/views.py
+++ b/
src/wolnelektury/views.py
@@
-187,4
+187,8
@@
def widget(request):
def exception_test(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