Fix wrong path to graphene.contrib.django

This commit is contained in:
Ilhan Sanli 2016-04-01 22:34:34 +02:00
parent 1f548f188d
commit 8c39543330

View File

@ -14,10 +14,10 @@ Graphene comes with a management command for Django to dump your schema data to
## Usage
Include `graphene.django.contrib` to `INSTALLED_APPS` in you project settings:
Include `graphene.contrib.django` to `INSTALLED_APPS` in you project settings:
```python
INSTALLED_APPS += ('graphene.django.contrib')
INSTALLED_APPS += ('graphene.contrib.django')
```
Assuming your Graphene schema is at `tutorial.quickstart.schema`, run the command: