diff --git a/install.py b/install.py index aa80a58..6164c8f 100755 --- a/install.py +++ b/install.py @@ -76,7 +76,12 @@ def print_keys(dictionary): def gen_list_indices(html_file, file_dict): for key in file_dict: - print() + value = file_dict[key] + print(key + "->" + str(value)) + if not isinstance(value, list): + html_file.write("
  • " + key + "
  • ") + else: + html_file.write("
  • " + value[1] + "
  • ") def gen_col_headers(html_file, file_dict): for key in file_dict: