From fcd53070797d825d25209f20dc043ea4331eba68 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 15 Feb 2024 21:02:26 +0000 Subject: [PATCH] String cast --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index 27268898e..a6e8727c1 100644 --- a/daemon.py +++ b/daemon.py @@ -973,10 +973,10 @@ class PubServer(BaseHTTPRequestHandler): 'text-align: center;">' + str(http_code) + '' + \ '

' + http_description + \ + 'small-caps;">

' + str(http_description) + \ '

' + \ '
' + \ - long_description + '
' + str(long_description) + '' msg = msg.encode('utf-8') self.send_response(http_code) self.send_header('Content-Type', 'text/html; charset=utf-8')