fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33c8c74
)
fix stupid bug
author
Jan Szejko
<janek37@gmail.com>
Fri, 10 Nov 2017 14:56:58 +0000
(15:56 +0100)
committer
Jan Szejko
<janek37@gmail.com>
Fri, 10 Nov 2017 14:56:58 +0000
(15:56 +0100)
src/contact/views.py
patch
|
blob
|
history
diff --git
a/src/contact/views.py
b/src/contact/views.py
index
773f193
..
7ec0505
100644
(file)
--- a/
src/contact/views.py
+++ b/
src/contact/views.py
@@
-24,7
+24,7
@@
def form(request, form_tag, force_enabled=False):
raise Http404
if not (force_enabled and request.user.is_superuser):
disabled = getattr(form_class, 'disabled', False)
- end_tuple = getattr(form_class, 'ends_on')
+ end_tuple = getattr(form_class, 'ends_on'
, None
)
end_time = localtime_to_utc(datetime(*end_tuple)) if end_tuple else None
expired = end_time and end_time < timezone.now()
if disabled or expired: