diff options
| author | 2018-09-05 13:55:53 +0100 | |
|---|---|---|
| committer | 2018-09-05 13:55:53 +0100 | |
| commit | 07c08ad4281aea89ae884ada6ad116008a91bd05 (patch) | |
| tree | 3acd78d04ef9f33fab90df5cc9f8645d5b51f799 | |
| parent | Merge branch 'master' of github.com:jesopo/bitbot (diff) | |
| signature | ||
Typo in channel_save; channes -> channels
| -rw-r--r-- | modules/channel_save.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_save.py b/modules/channel_save.py index 6db99cc1..58770625 100644 --- a/modules/channel_save.py +++ b/modules/channel_save.py @@ -33,7 +33,7 @@ class Module(object): def _remove_channel(self, server, channel_name): channels = server.get_setting("autojoin", []) if channel_name in channels: - channes.remove(channel_name) + channels.remove(channel_name) event["server"].set_setting("autojoin", channels) def self_part(self, event): |
