summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-03-31 11:42:05 +0000
committerGeorg Brandl <georg@python.org>2008-03-31 11:42:05 +0000
commita86b36b4baecb9d48d88d75c1a1a89de335cc19b (patch)
tree9c8c92fb445b9d6c19c2f3d503d6ded2c19e5048
parentb8369b5c81b96821dda7ad3d50dfdfdd3200b140 (diff)
downloadsphinx-git-a86b36b4baecb9d48d88d75c1a1a89de335cc19b.tar.gz
Fix envvar index template.
-rw-r--r--sphinx/directives.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/directives.py b/sphinx/directives.py
index 419e359a2..8195cc988 100644
--- a/sphinx/directives.py
+++ b/sphinx/directives.py
@@ -426,7 +426,7 @@ for _name in desctypes:
# the directives are either desc_directive or target_directive
additional_xref_types = {
# directive name: (role name, index text, function to parse the desc node)
- 'envvar': ('envvar', 'environment variable', None),
+ 'envvar': ('envvar', 'environment variable; %s', None),
}