[Python-checkins] r62083 - doctools/trunk/sphinx/directives.py

georg.brandl python-checkins at python.org
Mon Mar 31 13:42:05 CEST 2008


Author: georg.brandl
Date: Mon Mar 31 13:42:05 2008
New Revision: 62083

Modified:
   doctools/trunk/sphinx/directives.py
Log:
Fix envvar index template.


Modified: doctools/trunk/sphinx/directives.py
==============================================================================
--- doctools/trunk/sphinx/directives.py	(original)
+++ doctools/trunk/sphinx/directives.py	Mon Mar 31 13:42:05 2008
@@ -426,7 +426,7 @@
 # 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),
 }
 
 


More information about the Python-checkins mailing list