Cosmetic fix.
authorEric S. Raymond <esr@thyrsus.com>
Sun, 26 Aug 2012 14:01:08 +0000 (10:01 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sun, 26 Aug 2012 14:01:08 +0000 (10:01 -0400)
irker.py

index 565fb4c088a73feb97c7a0b16ce508946a809c3f..fea8a14ffc721bd95da21e5f60e31e178ad24047 100755 (executable)
--- a/irker.py
+++ b/irker.py
@@ -12,6 +12,7 @@ join/leave traffic.
 Requires Python 2.6.
 
 TO-DO: some servers have a limit of 20 channels per server connection.
+TO-DO: Register the port?
 """
 import os, sys, json, irclib, exceptions, getopt, urlparse
 import threading, Queue, SocketServer
@@ -54,7 +55,7 @@ class Session():
             self.queue.task_done()
     def name(self):
         "Generate a unique name for this session."
-        return "irker" + str(Session.count)
+        return "irker%03d" % Session.count
     def await(self):
         "Block until processing of all queued messages is done."
         self.queue.join()