From 14c3e2a76c6cb40ebb8b40b25e45a1721b77be8c Mon Sep 17 00:00:00 2001 From: Sarah Date: Thu, 14 Apr 2022 21:50:25 +0100 Subject: [PATCH] fix row generation for hidden themes table --- update_hidden_themes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_hidden_themes.py b/update_hidden_themes.py index 1b6a5f2..271ec05 100644 --- a/update_hidden_themes.py +++ b/update_hidden_themes.py @@ -56,7 +56,7 @@ def build_page(hidden_themes): row_data = [] row_data.append(str(date)) row_data.append(VCinemaUtils.get_film_list(data['viewings'])) - row_data.append((k for k in sorted(data['hidden_themes'])) if 'hidden_themes' in data else "N/A") + row_data.append(("
".join(k for k in sorted(data['hidden_themes']))) if 'hidden_themes' in data else "N/A") table += " | ".join(row_data)