Opened 7 years ago

Last modified 7 years ago

#28204 closed Bug

UnicodeDecodeError in paginate_queryset — at Version 4

Reported by: Andrew Owned by: nobody
Component: Generic views Version: 1.11
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Andrew)

In Django 1.11.1 in function (django.views.generic.list.py): paginate_queryset

            try:
                page = paginator.page(page_number)
                return (paginator, page, page.object_list, page.has_other_pages())
            except InvalidPage as e:
                raise Http404(_('Invalid page (%(page_number)s): %(message)s') % {
                    'page_number': page_number,
                    'message': str(e)

line 'message': str(e) contains mistake. Maybe use force_text instead of str
We have UnicodeDecodeError when non English locale:

EmptyPage(u'\u0421\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432',)

Regression in 6bd61194d49219276275542662e2fbe690534555

Change History (5)

comment:1 by Andrew, 7 years ago

Component: UncategorizedGeneric views
Easy pickings: set
Type: UncategorizedBug

by Andrew, 7 years ago

Attachment: fix.patch added

comment:2 by Andrew, 7 years ago

Has patch: set
Needs tests: set

comment:4 by Andrew, 7 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top