Fixes comment from @xordoquy.

This commit is contained in:
Viktor Petersson 2017-01-05 12:06:08 +00:00
parent 7ef6e96725
commit eed8f5bb42

View File

@ -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