diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/irc.py | 2 | ||||
-rw-r--r-- | plugins/replace.py | 2 | ||||
-rw-r--r-- | plugins/server_part.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/irc.py b/plugins/irc.py index 7f8e8d35..eeef128c 100644 --- a/plugins/irc.py +++ b/plugins/irc.py @@ -199,7 +199,7 @@ class Plugin(BasePlugin): already_opened = False for tab in self.core.tabs: - if tab.name.full.endswith(room_suffix) and tab.joined: + if tab.name.endswith(room_suffix) and tab.joined: already_opened = True break diff --git a/plugins/replace.py b/plugins/replace.py index 8ec91f70..7e259dab 100644 --- a/plugins/replace.py +++ b/plugins/replace.py @@ -106,7 +106,7 @@ def replace_random_user(message, tab): else: # that doesn’t make any sense. By why use this pattern in a # ConversationTab anyway? - return tab.name.full + return str(tab.name) def replace_dice(message, tab): diff --git a/plugins/server_part.py b/plugins/server_part.py index 9b863a2b..7a71d94b 100644 --- a/plugins/server_part.py +++ b/plugins/server_part.py @@ -53,7 +53,7 @@ class Plugin(BasePlugin): message = args[1] for tab in self.core.get_tabs(MucTab): - if tab.name.full.endswith(jid): + if tab.name.endswith(jid): tab.command_part(message) def completion_server_part(self, the_input): |