From 1ae8c909c3767017996d4bf86cd5007952aac0e5 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 16 Feb 2022 11:16:15 +0000 Subject: [PATCH] Remove html from description --- pgp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgp.py b/pgp.py index 681a7a48a..1712e611e 100644 --- a/pgp.py +++ b/pgp.py @@ -693,7 +693,8 @@ def actor_to_vcard_xml(actor: {}) -> str: vcard_str += ' ' + actor['name'] + '\n' vcard_str += ' ' + \ actor['preferredUsername'] + '\n' - vcard_str += ' ' + actor['summary'] + '\n' + vcard_str += ' ' + \ + remove_html(actor['summary']) + '\n' email_address = get_email_address(actor) if email_address: vcard_str += ' ' + email_address + '\n'