X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/a28e2ae95b1012933a01f3fa992d9f6954f82346..b376c8253cf227f11e50157fd10c02b1cd784646:/bot.py diff --git a/bot.py b/bot.py index 0e6e926..ed45293 100644 --- a/bot.py +++ b/bot.py @@ -185,7 +185,7 @@ class Bot(object): self.msg(nick, "I tried, but you're not authed!") def _got433(self, pieces): if not self.conn.registered(): #we're trying to connect - newnick = "%s%d" % (self.nick, random.randint(111,999)) + newnick = "%s%d" % (self.nick, random.randint(111, 999)) self.conn.send("NICK %s" % (newnick)) self.nick = newnick def _gotjoin(self, pieces):