diff options
| author | 2018-11-05 18:30:14 +0000 | |
|---|---|---|
| committer | 2018-11-05 18:30:39 +0000 | |
| commit | d63115440dbf426063e0f5d813255295dc910837 (patch) | |
| tree | 309f51ae7b1e920a30149150ee96ab4297847cb0 /src/IRCBot.py | |
| parent | Pass connection parameters around in their own object (IRCConnectionParameters) (diff) | |
| signature | ||
Fix the order of some connection params, add `alias` as a seperate argument to
IRCServer.Server
Diffstat (limited to 'src/IRCBot.py')
| -rw-r--r-- | src/IRCBot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBot.py b/src/IRCBot.py index 69bb3abb..10197509 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -44,7 +44,7 @@ class Bot(object): *self.database.servers.get(server_id)) new_server = IRCServer.Server(self, self._events, - connection_params.id, connection_params) + connection_params.id, connection_params.alias, connection_params) self._events.on("new.server").call(server=new_server) if not connect or not new_server.get_setting("connect", True): |
