summaryrefslogtreecommitdiffstats
path: root/packages/views/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/views/search.py')
-rw-r--r--packages/views/search.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/views/search.py b/packages/views/search.py
index 99bf703..f7b8ed1 100644
--- a/packages/views/search.py
+++ b/packages/views/search.py
@@ -1,5 +1,6 @@
from datetime import datetime
import json
+from pytz import utc
from django import forms
from django.contrib.admin.widgets import AdminDateWidget
@@ -105,8 +106,9 @@ def parse_form(form, packages):
if form.cleaned_data['last_update']:
lu = form.cleaned_data['last_update']
- packages = packages.filter(last_update__gte=
- datetime(lu.year, lu.month, lu.day, 0, 0))
+ cutoff = datetime(lu.year, lu.month, lu.day, 0, 0)
+ cutoff = cutoff.replace(tzinfo=utc)
+ packages = packages.filter(last_update__gte=cutoff)
if form.cleaned_data['name']:
name = form.cleaned_data['name']