Skip to content

Commit

Permalink
sandbox: Keep compatibility with Django 1.11
Browse files Browse the repository at this point in the history
... otherwise some tests cannot run.
  • Loading branch information
dbaty committed Oct 1, 2018
1 parent e60a0a5 commit b73568c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sandbox/urls.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from django.conf.urls import include, url
from django.contrib import admin
from django.urls import include, path
from django.conf.urls import include


urlpatterns = (
path('admin/', admin.site.urls),
path('', include('testapp.urls')),
url('admin/', admin.site.urls),
url('', include('testapp.urls')),
)

0 comments on commit b73568c

Please sign in to comment.