fixbot/irc.py
changeset 64 8574aeff9b36
parent 58 31a17b0b5159
equal deleted inserted replaced
63:a849c00b63f8 64:8574aeff9b36
     1 from twisted.words.protocols import irc
     1 from twisted.words.protocols import irc
     2 from twisted.internet import protocol
     2 from twisted.internet import protocol
     3 from twisted.python import log
     3 from twisted.python import log
     4 import traceback
     4 import traceback
     5 
       
     6 import buffer
       
     7 
     5 
     8 class ReplyException (Exception) :
     6 class ReplyException (Exception) :
     9     def __init__ (self, reply) :
     7     def __init__ (self, reply) :
    10         self.reply = reply
     8         self.reply = reply
    11 
     9