@@ -95,23 +95,23 @@ def main(csv_file_path, html_file_path, functions_file_path):
9595 this_row += '<td>' + row [4 ] + '</td>' # CRAN license
9696 this_row += '<td>' + row [6 ] + '</td>' # GH last update
9797 this_row += '<td>' + row [7 ] + '</td>' # GH version
98- this_row += '<td>' + row [8 ] + '</td>' # GH license
99- this_row += '<td class="left">' + row [9 ] + '</td>' # GH owner
98+ this_row += '<td>' + row [9 ] + '</td>' # GH license
99+ this_row += '<td class="left">' + row [10 ] + '</td>' # GH owner
100100
101101 # Group rows by status and add put a row number in
102- if row [10 ].strip () == 'production' :
102+ if row [11 ].strip () == 'production' :
103103 production_rows += '<tr>'
104104 production_rows += '<td>' + str (production_rows_count ) + '</td>' # Row number
105105 production_rows += this_row
106106 production_rows += '</tr>'
107107 production_rows_count += 1
108- elif row [10 ].strip () == 'development' :
108+ elif row [11 ].strip () == 'development' :
109109 development_rows += '<tr>'
110110 development_rows += '<td>' + str (development_rows_count ) + '</td>'
111111 development_rows += this_row
112112 development_rows += '</tr>'
113113 development_rows_count += 1
114- elif row [10 ].strip () == 'retired' :
114+ elif row [11 ].strip () == 'retired' :
115115 retired_rows += '<tr>'
116116 retired_rows += '<td>' + str (retired_rows_count ) + '</td>'
117117 retired_rows += this_row
0 commit comments