Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/config/django.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,11 @@ to add a hook to circus to activate Raven::
It is necessary because chaussette doesn't run a django command.

"""
from django.conf import settings
from django.core.management import call_command
if not settings.configured:
settings.configure()

call_command('validate')
return True

Expand Down