From eed8f5bb4269a29017380a57eec18dcc14c2756c Mon Sep 17 00:00:00 2001 From: Viktor Petersson Date: Thu, 5 Jan 2017 12:06:08 +0000 Subject: [PATCH] Fixes comment from @xordoquy. --- docs/tutorial/1-serialization.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index d7d6bafba..710dfb8e7 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -45,9 +45,11 @@ We'll need to add our new `snippets` app and the `rest_framework` app to `INSTAL INSTALLED_APPS = ( ... 'rest_framework', - 'snippets', + 'snippets.apps.SnippetsConfig', ) +Please note that if you're using Django <1.9, you need to replace `snippets.apps.SnippetsConfig` with `snippets`. + Okay, we're ready to roll. ## Creating a model to work with