aboutsummaryrefslogtreecommitdiff
path: root/mu4web/html_render.py
diff options
context:
space:
mode:
Diffstat (limited to 'mu4web/html_render.py')
-rw-r--r--mu4web/html_render.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mu4web/html_render.py b/mu4web/html_render.py
index 99140ad..2411939 100644
--- a/mu4web/html_render.py
+++ b/mu4web/html_render.py
@@ -19,7 +19,6 @@ def _render_document(document: HTML) -> str:
if isinstance(document, tuple):
tag, *body = document
if body and isinstance(body[0], dict):
- print(body[0])
attributes = ' '.join(f'{a}="{html.escape(b)}"'
for a, b in body[0].items())
body = body[1:]