mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-03-16 22:10:30 +00:00
Use Python 3's urllib.parse.urlencode instead of django.utils.six
This commit is contained in:
parent
899f92f53a
commit
21cab41381
1 changed files with 1 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import json
|
||||
from urllib.parse import urlencode
|
||||
|
||||
from django import VERSION
|
||||
|
||||
|
|
@ -16,7 +17,6 @@ from django.http import HttpResponse, HttpResponseBadRequest
|
|||
from django.shortcuts import render
|
||||
from django.template.defaultfilters import capfirst
|
||||
from django.utils.decorators import method_decorator
|
||||
from django.utils.six.moves.urllib.parse import urlencode
|
||||
from django.utils.translation import gettext as _
|
||||
from django.views.decorators.http import require_POST
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue