From 66674aec5167a24878a28414c835a8444796a655 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 27 Dec 2018 10:18:57 -0500 Subject: [PATCH] Correctly import path function --- 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 6ec5b23a5..8359b9af6 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 url, include + from django.conf.urls import include, path from rest_framework import routers from tutorial.quickstart import views