diff options
author | makefu <github@syntax-fehler.de> | 2014-04-25 12:02:03 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-04-25 12:02:03 +0200 |
commit | 9bdee602a30f715c9ba2583d3948c360448c670b (patch) | |
tree | a3262e6febda77bc87de49371ecd0fdb874bdc3a /Reaktor/IRC/ircasy.py | |
parent | c25a00dca1af27a95ccbc521075375d1df866914 (diff) |
make config file a parameter
Diffstat (limited to 'Reaktor/IRC/ircasy.py')
-rw-r--r-- | Reaktor/IRC/ircasy.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Reaktor/IRC/ircasy.py b/Reaktor/IRC/ircasy.py index 9a7f44f3..259ea98c 100644 --- a/Reaktor/IRC/ircasy.py +++ b/Reaktor/IRC/ircasy.py @@ -114,7 +114,10 @@ class asybot(asychat): self.on_kick(prefix, command, params, rest) elif command == 'JOIN': - self.on_join(prefix, command, params, rest) + try: + self.on_join(prefix, command, params, rest) + except: + pass elif command == '433': # ERR_NICKNAMEINUSE, retry with another name |