summaryrefslogtreecommitdiff
path: root/docs/faq
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2020-04-30 11:12:05 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-05-13 09:38:59 +0200
commit4eb5e4ee4fe097986df839b11efb69b6bb9db00f (patch)
tree4a164e7ac55d6e59fb15109b497d9402e0ca7cfe /docs/faq
parent345fa40cb5459fab8ce06744396ab5ceaf2d04ee (diff)
[3.1.x] Used :envvar: role and .. envvar:: directive in various docs.
Backport of fbdb032de266ba5f82e061ab204f6c622889d563 from master
Diffstat (limited to 'docs/faq')
-rw-r--r--docs/faq/usage.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/faq/usage.txt b/docs/faq/usage.txt
index 0145a580fd..f95ca11174 100644
--- a/docs/faq/usage.txt
+++ b/docs/faq/usage.txt
@@ -2,12 +2,12 @@
FAQ: Using Django
=================
-Why do I get an error about importing DJANGO_SETTINGS_MODULE?
-=============================================================
+Why do I get an error about importing :envvar:`DJANGO_SETTINGS_MODULE`?
+=======================================================================
Make sure that:
-* The environment variable DJANGO_SETTINGS_MODULE is set to a
+* The environment variable :envvar:`DJANGO_SETTINGS_MODULE` is set to a
fully-qualified Python module (i.e. "mysite.settings").
* Said module is on ``sys.path`` (``import mysite.settings`` should work).