Update css-inline requirement from ==0.8.* to ==0.13.*

This commit is contained in:
Raphael Michel
2024-02-15 13:48:38 +01:00
parent c80d5b1bb2
commit b89a4f7b32
3 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ def send_notification_mail(notification: Notification, user: User):
tpl_html = get_template('pretixbase/email/notification.html')
body_html = tpl_html.render(ctx)
inliner = css_inline.CSSInliner(remove_style_tags=True)
inliner = css_inline.CSSInliner(keep_style_tags=False)
body_html = inliner.inline(body_html)
tpl_plain = get_template('pretixbase/email/notification.txt')