Print out the body of the table. Each row is a NIC feature.
(outfile, num_cols, ini_files, ini_data, default_features)
| 230 | |
| 231 | |
| 232 | def print_table_body(outfile, num_cols, ini_files, ini_data, default_features): |
| 233 | """ Print out the body of the table. Each row is a NIC feature. """ |
| 234 | |
| 235 | for feature, _ in default_features: |
| 236 | line = '' |
| 237 | |
| 238 | for ini_filename in ini_files: |
| 239 | line += ' ' + ini_data[ini_filename][feature] |
| 240 | |
| 241 | print_table_row(outfile, feature, line) |
| 242 | |
| 243 | print_table_divider(outfile, num_cols) |
| 244 | |
| 245 | |
| 246 | def print_table_row(outfile, feature, line): |
no test coverage detected