Skip to content

Commit

Permalink
blog_info_dict was calling filter with additional arguments which wer…
Browse files Browse the repository at this point in the history
…e already implemented in blogpublishmangr, removed this redundancy
  • Loading branch information
omkarvijay5 committed Aug 27, 2014
1 parent f916b20 commit 3167a7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blogango/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from blogango.models import BlogEntry

blog_info_dict = {
'queryset': BlogEntry.objects.filter(is_published=True, publish_date__lte=datetime.now),
'queryset': BlogEntry.objects.filter(),
'date_field': 'publish_date',
}
sitemaps = {
Expand Down

0 comments on commit 3167a7a

Please sign in to comment.