[ScryMUD] SVN Commit Info r845 - trunk/tools/python
scrymud at wanfear.com
scrymud at wanfear.com
Mon Jul 10 22:12:19 PDT 2006
Author: eroper
Date: 2006-07-10 22:12:19 -0700 (Mon, 10 Jul 2006)
New Revision: 845
Modified:
trunk/tools/python/html_help.py
Log:
Fixed a missed lowercasing in html_help.py
Modified: trunk/tools/python/html_help.py
===================================================================
--- trunk/tools/python/html_help.py 2006-07-11 05:00:21 UTC (rev 844)
+++ trunk/tools/python/html_help.py 2006-07-11 05:12:19 UTC (rev 845)
@@ -119,7 +119,7 @@
ret_val += ("<div class=\"help_index_quicklinks\">")
for letter in scrymud.util.alphabet:
if ( idx.has_key(letter) ): ret_val += ("<a href=\"#%s\">%s</a> " %(letter.lower(),letter.lower()))
- else: ret_val += ("%s " %(letter))
+ else: ret_val += ("%s " %(letter.lower()))
for k in keys:
ret_val += ("<div class=\"help_index_section\">\n<a name=\"%s\" /><div class=\"help_index_sortkey\">%s</div>\n" %(k.lower(),k.lower()))
ret_val += ("<ul class=\"help_index\">\n")
More information about the ScryMUD
mailing list