Fixes documentation.

Django==1.8.17 chokes on this unless it’s just `snippets`.
This commit is contained in:
Viktor Petersson 2017-01-05 11:14:57 +00:00
parent 20d4d790b2
commit 7ef6e96725

View File

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