From 9534197005b10c325de66e30efc49bc0d717dfa6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 28 Sep 2020 13:41:53 +0100 Subject: [PATCH] Restore include --- daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 28573c87..e73d187a 100644 --- a/daemon.py +++ b/daemon.py @@ -152,7 +152,7 @@ from webinterface import rssHashtagSearch from webinterface import htmlModerationInfo from webinterface import htmlSearchSharedItems from webinterface import htmlHashtagBlocked -# from webinterface import htmlSendingPost +from webinterface import htmlSendingPost from shares import getSharesFeedForPerson from shares import addShare from shares import removeShare @@ -9262,6 +9262,7 @@ class PubServer(BaseHTTPRequestHandler): # show a sending post screen currHeaders = self.headers.items() + print('currHeaders: ' + str(currHeaders)) msg = \ htmlSendingPost(self.server.baseDir, self.server.translate).encode('utf-8')