From 880484d3b74597c3f60529f0f7ae43ed4ec5e45e Mon Sep 17 00:00:00 2001 From: Arkadiusz Adamski Date: Wed, 17 Jan 2024 21:46:15 +0100 Subject: [PATCH] Update README.rst To be consistent with previous examples. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 98c5f1e..ab15dae 100644 --- a/README.rst +++ b/README.rst @@ -137,7 +137,7 @@ Or if you are not serving your app via WSGI but ASGI instead, you need to modify import os os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings') - os.environ.setdefault('DJANGO_CONFIGURATION', 'DEV') + os.environ.setdefault('DJANGO_CONFIGURATION', 'Dev') from configurations.asgi import get_asgi_application