diff options
Diffstat (limited to 'plugins/reorder.py')
-rw-r--r-- | plugins/reorder.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/reorder.py b/plugins/reorder.py index 7be0b350..26f5f13d 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -177,6 +177,8 @@ class Plugin(BasePlugin): if cls in (tabs.DynamicConversationTab, tabs.StaticConversationTab): new_tab = cls(self.core, jid) new_tabs.append(new_tab) + else: + new_tabs.append(tabs.GapTab(self.core)) except: self.api.information('Failed to create tab \'%s\'.' % jid, 'Error') if create_gaps: |