From: Eric S. Raymond Date: Tue, 16 Apr 2013 10:41:36 +0000 (-0400) Subject: Typo fixes. X-Git-Tag: 1.18~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e4ffca75c642e65eb5192daaf2a71c9e7c8ebc02;p=irker.git Typo fixes. --- 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)