diff options
author | juhulian <julian@rilli.eu> | 2014-04-09 10:37:59 +0200 |
---|---|---|
committer | juhulian <julian@rilli.eu> | 2014-04-09 10:37:59 +0200 |
commit | 4495381d152876aca97c691e4d0b38f283f36012 (patch) | |
tree | fc674ea64114cfbc651401a2d8c94dd129e7db47 | |
parent | 4072c48be90cd7d125cb8b693e07ff15caa64d59 (diff) |
fix bracket by on_join
-rw-r--r-- | IRC/ircasy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IRC/ircasy.py b/IRC/ircasy.py index b40913c..9a7f44f 100644 --- a/IRC/ircasy.py +++ b/IRC/ircasy.py @@ -114,7 +114,7 @@ class asybot(asychat): self.on_kick(prefix, command, params, rest) elif command == 'JOIN': - self.on_join(prefix, command, params, rest)) + self.on_join(prefix, command, params, rest) elif command == '433': # ERR_NICKNAMEINUSE, retry with another name |