diff options
| author | 2017-11-01 14:20:15 +0000 | |
|---|---|---|
| committer | 2017-11-01 14:20:15 +0000 | |
| commit | 55ff2dd5f7ddb58a75a0286590b760aae6c4c3e2 (patch) | |
| tree | 2da8d3dc6149cadec9f70aef641d09a9f1817ca1 /IRCLineHandler.py | |
| parent | Add OP_NO_TLSv1 and fix a bug created while fixing another bug (diff) | |
| signature | ||
capibility :arrow_right: capability
Diffstat (limited to 'IRCLineHandler.py')
| -rw-r--r-- | IRCLineHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IRCLineHandler.py b/IRCLineHandler.py index 10afcca9..aa8dfb24 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -200,7 +200,7 @@ def handle_QUIT(data): @handler(description="The server is telling us about its capabilities!") def handle_CAP(data): - capibility_list = [] + capability_list = [] if len(data.args) > 2: capability_list = data.args[2].split() bot.events.on("received").on("cap").call(data=data, |
