[Python-checkins] r65786 - doctools/trunk/sphinx/directives/other.py
georg.brandl
python-checkins at python.org
Sun Aug 17 23:54:33 CEST 2008
Author: georg.brandl
Date: Sun Aug 17 23:54:32 2008
New Revision: 65786
Log:
Index quick fix.
Modified:
doctools/trunk/sphinx/directives/other.py
Modified: doctools/trunk/sphinx/directives/other.py
==============================================================================
--- doctools/trunk/sphinx/directives/other.py (original)
+++ doctools/trunk/sphinx/directives/other.py Sun Aug 17 23:54:32 2008
@@ -181,7 +181,7 @@
if entry.startswith(type+':'):
value = entry[len(type)+1:].strip()
value = pairindextypes[type] + '; ' + value
- ne.append((type, value, targetid, value))
+ ne.append(('pair', value, targetid, value))
break
else:
for type in indextypes:
More information about the Python-checkins
mailing list