From 5d2700307c724f2aa70787d70619d2514693064f Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 27 Dec 2018 10:21:13 -0500 Subject: [PATCH] Fix import path to use django.urls This is what is prescribed in the Django 2.1 tutorial --- docs/tutorial/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 8359b9af6..cbec2501b 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -111,7 +111,7 @@ We can easily break these down into individual views if we need to, but using vi Okay, now let's wire up the API URLs. On to `tutorial/urls.py`... - from django.conf.urls import include, path + from django.urls import include, path from rest_framework import routers from tutorial.quickstart import views