From e4ffca75c642e65eb5192daaf2a71c9e7c8ebc02 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 16 Apr 2013 06:41:36 -0400 Subject: [PATCH] Typo fixes. --- irkerd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irkerd b/irkerd index 2b20d46..a0231f4 100755 --- a/irkerd +++ b/irkerd @@ -123,7 +123,7 @@ class Connection: def handle_badnick(self): "The server says our nick has a conflict." self.irker.debug(1, "nick %s rejected" % self.nickname()) - # Randomness prevents a malicious user or bot from antcipating the + # Randomness prevents a malicious user or bot from anticipating the # next trial name in order to block us from completing the handshake. self.nick_trial += random.randint(1, 3) self.last_xmit = time.time() @@ -539,7 +539,7 @@ class IrkerUDPHandler(SocketServer.BaseRequestHandler): if __name__ == '__main__': debuglvl = 0 logfile = None - (options, arguments) = getopt.getopt(sys.argv[1:], "d:V:l:") + (options, arguments) = getopt.getopt(sys.argv[1:], "d:l:V:") for (opt, val) in options: if opt == '-d': # Enable debug/progress messages debuglvl = int(val) -- 2.26.2