[urls] Fix typo and remove unused imports
This commit is contained in:
parent
198308031b
commit
aeb794fe74
2 changed files with 2 additions and 8 deletions
|
@ -14,15 +14,13 @@ Including another URLconf
|
||||||
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import django
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from django.urls import re_path
|
from django.urls import re_path
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# re_path is not available in Django 2
|
# re_path is not available in Django 2
|
||||||
from django.conf.urls import url as re_pa
|
from django.conf.urls import url as re_path
|
||||||
|
|
||||||
from django.conf.urls import url, include
|
from django.conf.urls import include
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
|
|
|
@ -11,16 +11,12 @@
|
||||||
# (c) 2015-2016 Valentin Samir
|
# (c) 2015-2016 Valentin Samir
|
||||||
"""urls for the app"""
|
"""urls for the app"""
|
||||||
|
|
||||||
import django
|
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from django.urls import re_path
|
from django.urls import re_path
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# re_path is not available in Django 2
|
# re_path is not available in Django 2
|
||||||
from django.conf.urls import url as re_path
|
from django.conf.urls import url as re_path
|
||||||
|
|
||||||
from django.conf.urls import url
|
|
||||||
from django.views.generic import RedirectView
|
from django.views.generic import RedirectView
|
||||||
from django.views.decorators.debug import sensitive_post_parameters, sensitive_variables
|
from django.views.decorators.debug import sensitive_post_parameters, sensitive_variables
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue