You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@incubator.apache.org by jm...@apache.org on 2020/04/16 09:48:29 UTC

svn commit: r1876593 - /incubator/public/trunk/clutch2report.py

Author: jmclean
Date: Thu Apr 16 09:48:29 2020
New Revision: 1876593

URL: http://svn.apache.org/viewvc?rev=1876593&view=rev
Log:
Fix TOC formatting

Modified:
    incubator/public/trunk/clutch2report.py

Modified: incubator/public/trunk/clutch2report.py
URL: http://svn.apache.org/viewvc/incubator/public/trunk/clutch2report.py?rev=1876593&r1=1876592&r2=1876593&view=diff
==============================================================================
--- incubator/public/trunk/clutch2report.py (original)
+++ incubator/public/trunk/clutch2report.py Thu Apr 16 09:48:29 2020
@@ -88,7 +88,7 @@ TODO add narrative
 
 ## Credits
 
-Table of Contents  
+## Table of Contents  
 {toc}
 """
 
@@ -211,7 +211,7 @@ def main():
     for project in sorted(projects.keys()):
         pdata = projects[project]
         if pdata['rawReportingGroup'] == curGroup or pdata['reportingMonthly']:
-            toc = toc + "[" + projects[project]['fullName'] + "](#" + projects[project]['fullName'] +")  \n"
+            toc = toc + "[" + projects[project]['fullName'] + "](#" + projects[project]['fullName'].lower() +")  \n"
          
     output.write(boilerplate.format(month=calendar.month_name[month],
                                     last_month=calendar.month_name[last_month],



---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@incubator.apache.org
For additional commands, e-mail: cvs-help@incubator.apache.org