diff options
| author | 2017-11-01 14:26:11 +0000 | |
|---|---|---|
| committer | 2017-11-01 14:26:11 +0000 | |
| commit | cfc623cfea7d5c3a54435c1785d7fbad130abbd5 (patch) | |
| tree | ec0e67e643aacb28f20edda9c903881f5a165e1b | |
| parent | Abandon capability request if an empty ACK (a spec violation but okay) is rec... (diff) | |
| parent | capibility :arrow_right: capability (diff) | |
| signature | ||
Merge branch 'master' of github.com:jesopo/bitbot
| -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, |
