From 200e1a6128e5fcce219d3c1ccf542f1c75c356d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 8 Jul 2020 10:20:58 +0200 Subject: xep_0045: Make format string actually format strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- slixmpp/plugins/xep_0045/stanza.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slixmpp/plugins/xep_0045/stanza.py b/slixmpp/plugins/xep_0045/stanza.py index 1550853f..2e1a1f8e 100644 --- a/slixmpp/plugins/xep_0045/stanza.py +++ b/slixmpp/plugins/xep_0045/stanza.py @@ -26,7 +26,7 @@ class MUCBase(ElementBase): interfaces = {'affiliation', 'role', 'jid', 'nick', 'room'} def get_item_attr(self, attr, default: str): - item = self.xml.find('{{{NS_USER}}}item') + item = self.xml.find(f'{{{NS_USER}}}item') if item is None: return default return item.get(attr) @@ -40,7 +40,7 @@ class MUCBase(ElementBase): return item def del_item_attr(self, attr): - item = self.xml.find('{{{NS_USER}}}item') + item = self.xml.find('f{{{NS_USER}}}item') if item is not None and attr in item.attrib: del item.attrib[attr] -- cgit v1.2.3