From 154a9e9ef34bbc238acebab7da2cbc2e710af076 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 18 Jan 2023 13:35:18 +0000 Subject: [PATCH] debug --- webapp_conversation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp_conversation.py b/webapp_conversation.py index c15f26c64..7b1b6de21 100644 --- a/webapp_conversation.py +++ b/webapp_conversation.py @@ -63,7 +63,7 @@ def html_conversation_view(post_id: str, html_header_with_external_style(css_filename, instance_title, None) separator_str = html_post_separator(base_dir, None) - text_mode_separator = '

' + text_mode_separator = '

\n' minimize_all_images = False if nickname in min_images_for_accounts: @@ -101,6 +101,7 @@ def html_conversation_view(post_id: str, if post_str: # check for "HTTP/1.1 303 See Other Server" if 'X-AP-Instance-ID' not in post_str: + print('DEBUG: post_str = ' + post_str) conv_str += text_mode_separator + separator_str + post_str conv_str += text_mode_separator + html_footer()