From 7ef6e967251bc36f234099e3498a901ab70ef178 Mon Sep 17 00:00:00 2001 From: Viktor Petersson Date: Thu, 5 Jan 2017 11:14:57 +0000 Subject: [PATCH] Fixes documentation. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Django==1.8.17 chokes on this unless it’s just `snippets`. --- 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..d7d6bafba 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -45,7 +45,7 @@ We'll need to add our new `snippets` app and the `rest_framework` app to `INSTAL INSTALLED_APPS = ( ... 'rest_framework', - 'snippets.apps.SnippetsConfig', + 'snippets', ) Okay, we're ready to roll.