aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_save.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-05 13:55:53 +0100
committerGravatar jesopo2018-09-05 13:55:53 +0100
commit07c08ad4281aea89ae884ada6ad116008a91bd05 (patch)
tree3acd78d04ef9f33fab90df5cc9f8645d5b51f799 /modules/channel_save.py
parentMerge branch 'master' of github.com:jesopo/bitbot (diff)
signature
Typo in channel_save; channes -> channels
Diffstat (limited to 'modules/channel_save.py')
-rw-r--r--modules/channel_save.py2
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):