]> gitweb.pimeys.fr Git - bots/parrot.git/commitdiff
En fait je voulais pas commiter le whois-stuff
authorVincent Le Gallic <legallic@crans.org>
Sun, 25 May 2014 00:24:44 +0000 (02:24 +0200)
committerVincent Le Gallic <legallic@crans.org>
Sun, 25 May 2014 00:24:44 +0000 (02:24 +0200)
Partial revert de ce4fddd82c5d8f1ee1ed3e919e0e7e8b2c689fd1

parrot.py

index dd5053023f4d0bb2ccd0943077de43bd5ad78e28..0cd5be9771eb644ee7ef2332b9330f1b8550d525 100755 (executable)
--- a/parrot.py
+++ b/parrot.py
@@ -87,9 +87,6 @@ class Parrot(ircbot.SingleServerIRCBot):
         
         self.quotedb = quotes.QuoteDB()
         self.reload_quotes()
-        
-        # Pour agir à la réception des whois 307 = registered nick
-        self.ircobj.add_global_handler("307", self.on_registered_nick)
 
     
     ### Utilitaires
@@ -509,12 +506,6 @@ class Parrot(ircbot.SingleServerIRCBot):
             time.sleep(2)
             serv.join(channel)
     
-    def on_registered_nick(self, serv, ev):
-        """À la réception d'un résultat de whois."""
-        pseudo, regis = ev.arguments()
-        if regis == 'is a registered nick':
-            print "%s est enregistré \o/" % pseudo
-     
     ### .fork trick
     def start_as_daemon(self, outfile):
         sys.stderr = Logger(outfile)