ui: Fix missing post_string on page_error

This commit is contained in:
tecnovert 2022-10-11 08:22:13 +02:00
parent 58a2707526
commit 5738cdd825
No known key found for this signature in database
GPG Key ID: 8ED6D8750C4E3F93

View File

@ -132,7 +132,7 @@ class HttpHandler(BaseHTTPRequestHandler):
**args_dict, **args_dict,
), 'UTF-8') ), 'UTF-8')
def page_info(self, info_str, post_string): def page_info(self, info_str, post_string=None):
template = env.get_template('info.html') template = env.get_template('info.html')
swap_client = self.server.swap_client swap_client = self.server.swap_client
summary = swap_client.getSummary() summary = swap_client.getSummary()
@ -142,7 +142,7 @@ class HttpHandler(BaseHTTPRequestHandler):
'summary': summary, 'summary': summary,
}) })
def page_error(self, error_str, post_string): def page_error(self, error_str, post_string=None):
template = env.get_template('error.html') template = env.get_template('error.html')
swap_client = self.server.swap_client swap_client = self.server.swap_client
summary = swap_client.getSummary() summary = swap_client.getSummary()