From 90af21f6807a1a1a7591325ca3ef68d0566c5fe8 Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 25 Mar 2021 22:40:41 +0100 Subject: fix: forgotten gaptab constructor calls --- plugins/reorder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins') diff --git a/plugins/reorder.py b/plugins/reorder.py index 38975a02..00961dbf 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -167,7 +167,7 @@ class Plugin(BasePlugin): for pos in sorted(tabs_spec): if create_gaps and pos > last + 1: new_tabs += [ - tabs.GapTab(self.core) for i in range(pos - last - 1) + tabs.GapTab() for i in range(pos - last - 1) ] cls, jid = tabs_spec[pos] try: @@ -183,11 +183,11 @@ class Plugin(BasePlugin): new_tab = cls(self.core, jid) new_tabs.append(new_tab) else: - new_tabs.append(tabs.GapTab(self.core)) + new_tabs.append(tabs.GapTab()) except: self.api.information('Failed to create tab \'%s\'.' % jid, 'Error') if create_gaps: - new_tabs.append(tabs.GapTab(self.core)) + new_tabs.append(tabs.GapTab()) finally: last = pos -- cgit v1.2.3