Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Feb 12, 2024
1 parent af4e61a commit 599e182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiptapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def handle_starttag(self, tag, attrs):
return

_attrs = " ".join(
[k if v is None else f'{escape(k)}="{escape(v)}"' for k, v in attrs]
[escape(k) if v is None else f'{escape(k)}="{escape(v)}"' for k, v in attrs]
)
self.iframe = f"<{tag} {_attrs}></{tag}>"

Expand Down

0 comments on commit 599e182

Please sign in to comment.