summaryrefslogtreecommitdiff
path: root/plugins/stoi.py
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2019-07-19 18:55:16 +0200
committerMaxime “pep” Buquet <pep@bouah.net>2019-07-19 18:55:16 +0200
commitb5849a868eee40b430e885f65ed4302df8e722aa (patch)
tree8795bafaad54298999b38e62286da642472ee77d /plugins/stoi.py
parent7fe073c602957248a03fa3db0bebef4e8d768455 (diff)
downloadpoezio-b5849a868eee40b430e885f65ed4302df8e722aa.tar.gz
poezio-b5849a868eee40b430e885f65ed4302df8e722aa.tar.bz2
poezio-b5849a868eee40b430e885f65ed4302df8e722aa.tar.xz
poezio-b5849a868eee40b430e885f65ed4302df8e722aa.zip
plugins: Make all changed plugins work in 1:1 tabs
These were still using tabs.ConversationTab that's been replaced by Dynamic and StaticConversationTab. These class have been introduced after resource locking was removed in 1:1, because they were needed for some plugins like OTR. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'plugins/stoi.py')
-rw-r--r--plugins/stoi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/stoi.py b/plugins/stoi.py
index 04d84881..78c4ed70 100644
--- a/plugins/stoi.py
+++ b/plugins/stoi.py
@@ -28,7 +28,7 @@ char_we_dont_want = string.punctuation + ' ’„“”…«»'
class Plugin(BasePlugin):
def init(self):
- for tab_type in (tabs.MucTab, tabs.PrivateTab, tabs.ConversationTab):
+ for tab_type in (tabs.MucTab, tabs.PrivateTab, tabs.DynamicConversationTab, tabs.StaticConversationTab):
self.api.add_tab_command(
tab_type,
'stoi',