jamespacileo/django-pure-pagination

Handling of escaped single quotes followed by 's'

Closed this issue · 1 comments

If a query with a single quote followed by an s comes in, it is converted to %27s

In line 202, this throws a TypeError because the %27s is interpreted as string formatting. If you change this to the new string formatting using .format() this should not be an issue.

Looks like this is fixed in the development version.