From 7cad027cb2755edceca1498b8d230ac294931db3 Mon Sep 17 00:00:00 2001 From: Jufebrown Date: Wed, 3 Oct 2018 09:25:43 -0500 Subject: [PATCH] fix django-admin commands on tutorial/1-serialization doc --- docs/tutorial/1-serialization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index 630c3da0a..387f99eda 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -33,7 +33,7 @@ Okay, we're ready to get coding. To get started, let's create a new project to work with. cd ~ - django-admin.py startproject tutorial + django-admin startproject tutorial cd tutorial Once that's done we can create an app that we'll use to create a simple Web API.