From 40ba3abed4193f4e192acdff4d600e67bf693f6b Mon Sep 17 00:00:00 2001 From: Paul Houser Date: Mon, 24 Aug 2020 14:10:37 -0700 Subject: [PATCH] functional install.py completed --- install.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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: