[2.0.x] isorted import statements in tutorial example.

Backport of d97cce3409 from master
This commit is contained in:
Melissa Lewis 2018-03-22 00:53:56 -07:00 committed by Carlton Gibson
parent 43348e4aa1
commit ba483c346b
1 changed files with 1 additions and 1 deletions

View File

@ -289,8 +289,8 @@ The next step is to point the root URLconf at the ``polls.urls`` module. In
.. snippet::
:filename: mysite/urls.py
from django.urls import include, path
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('polls/', include('polls.urls')),