diff options
-rw-r--r-- | poezio/core/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 03ca0a61..45704978 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -1168,9 +1168,9 @@ class CommandCore: try: await self.core.xmpp['xep_0045'].destroy(room, reason, altroom) except (IqError, IqTimeout) as e: - xmpp.core.information('Unable to destroy room %s: %s' % (room, e), 'Info') + self.core.information('Unable to destroy room %s: %s' % (room, e), 'Info') else: - xmpp.core.information('Room %s destroyed' % room, 'Info') + self.core.information('Room %s destroyed' % room, 'Info') if not args[0] and isinstance(self.core.tabs.current_tab, tabs.MucTab): room = self.core.tabs.current_tab.general_jid |