summaryrefslogtreecommitdiff
path: root/plugins/irc.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-03-31 23:24:58 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-06-12 14:33:39 +0100
commitc1be52847bae48215a8e5589b3a3b94bc1bb913c (patch)
tree36c1cbad9a615d404a345cbdb8309519c98e5185 /plugins/irc.py
parent37cd7d1924e666dada17bd691d7eb4894eb51a4e (diff)
downloadpoezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.gz
poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.bz2
poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.tar.xz
poezio-c1be52847bae48215a8e5589b3a3b94bc1bb913c.zip
Fix core commands, broken in the previous commit.
Diffstat (limited to 'plugins/irc.py')
-rw-r--r--plugins/irc.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/irc.py b/plugins/irc.py
index fe172481..9a67ffe4 100644
--- a/plugins/irc.py
+++ b/plugins/irc.py
@@ -178,7 +178,7 @@ class Plugin(BasePlugin):
rooms = self.config.get_by_tabname('rooms', server, default='').split(':')
for room in rooms:
room = '{}%{}@{}/{}'.format(room, server, gateway, nick)
- self.core.command_join(room)
+ self.core.command.join(room)
def initial_connect(self):
gateway = self.config.get('gateway', 'irc.poez.io')
@@ -204,7 +204,7 @@ class Plugin(BasePlugin):
delayed = self.api.create_delayed_event(5, self.join, gw, sect)
self.api.add_timed_event(delayed)
if not already_opened:
- self.core.command_join(room_suffix + '/' + nick)
+ self.core.command.join(room_suffix + '/' + nick)
delayed = self.api.create_delayed_event(5, login, gateway, section,
login_nick, login_command,
room_suffix[1:])
@@ -278,7 +278,7 @@ class Plugin(BasePlugin):
/irc_join <room or server>
"""
if not args:
- return self.core.command_help('irc_join')
+ return self.core.command.help('irc_join')
sections = self.config.sections()
if 'irc' in sections:
sections.remove('irc')
@@ -294,7 +294,7 @@ class Plugin(BasePlugin):
server.
"""
if args is None:
- return self.core.command_help('irc_query')
+ return self.core.command.help('irc_query')
current_tab_info = self.get_current_tab_irc_info()
if not current_tab_info:
return
@@ -305,9 +305,9 @@ class Plugin(BasePlugin):
message = args[1]
jid = '{}!{}@{}'.format(nickname, server, gateway)
if message:
- self.core.command_message('{} "{}"'.format(jid, message))
+ self.core.command.message('{} "{}"'.format(jid, message))
else:
- self.core.command_message('{}'.format(jid))
+ self.core.command.message('{}'.format(jid))
def join_server_rooms(self, section):
"""
@@ -324,7 +324,7 @@ class Plugin(BasePlugin):
suffix = '%{}@{}{}'.format(section, gateway, nick)
for room in rooms:
- self.core.command_join(room + suffix)
+ self.core.command.join(room + suffix)
def join_room(self, name):
"""
@@ -339,7 +339,7 @@ class Plugin(BasePlugin):
if self.config.get_by_tabname('nickname', server):
room += '/' + self.config.get_by_tabname('nickname', server)
- self.core.command_join(room)
+ self.core.command.join(room)
def get_current_tab_irc_info(self):
"""