Skip to content

Commit

Permalink
Merge pull request #18 from EnriqueSoria/fix/issue#3
Browse files Browse the repository at this point in the history
Fix #3:
  • Loading branch information
jose-lpa authored Jul 1, 2020
2 parents 9ef7319 + 5c752f6 commit 3b4ea7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracking_analyzer/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def changelist_view(self, request, extra_context=None):
current_page + 1).object_list.values_list('pk', flat=True)

current_results = get_requests_count(
Tracker.objects.filter(pk__in=current_pks))
Tracker.objects.filter(pk__in=list(current_pks)))

for item in current_results:
item['date'] = '{date}T{hour:02d}:{minute:02d}'.format(
Expand Down

0 comments on commit 3b4ea7b

Please sign in to comment.