From 73459106e847aca9e18424bc928b355bde968472 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Fri, 15 Feb 2019 17:19:17 -0500 Subject: [PATCH] Allow filters that never expire --- brutaldon/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brutaldon/forms.py b/brutaldon/forms.py index f280853..1064fa6 100644 --- a/brutaldon/forms.py +++ b/brutaldon/forms.py @@ -70,4 +70,4 @@ class FilterForm(forms.Form): ("43200", "12 hours"), ("86400", "1 day"), ("604800", "1 week")), - coerce=int) + coerce=int, required=False)