From f3c805eade1943dc181eb599fc7a08548de546ca Mon Sep 17 00:00:00 2001 From: Alex Scott Date: Thu, 10 Nov 2016 19:00:12 -0500 Subject: [PATCH] Update tutorial section 1 with django-admin --- 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 04fb6914a..13715e8df 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -38,7 +38,7 @@ To get started, let's create a new project to work with. Once that's done we can create an app that we'll use to create a simple Web API. - python manage.py startapp snippets + django-admin.py startapp snippets We'll need to add our new `snippets` app and the `rest_framework` app to `INSTALLED_APPS`. Let's edit the `tutorial/settings.py` file: