]> gitweb.pimeys.fr Git - bots/parrot.git/commitdiff
Unicode fix ?
authorVincent Le Gallic <legallic@crans.org>
Mon, 13 Oct 2014 17:55:25 +0000 (19:55 +0200)
committerVincent Le Gallic <legallic@crans.org>
Mon, 13 Oct 2014 17:55:25 +0000 (19:55 +0200)
parrot.py
quotes.py

index 0cd5be9771eb644ee7ef2332b9330f1b8550d525..c948dfe0e4367b1340f0c1bb8376239d2f9c8bda 100755 (executable)
--- a/parrot.py
+++ b/parrot.py
@@ -502,7 +502,7 @@ class Parrot(ircbot.SingleServerIRCBot):
         victime = ev.arguments()[0]
         raison = ev.arguments()[1]
         if victime == self.nick:
-            log(self.serveur, "%s kické de %s par %s (raison : %s)" % (victime, channel, auteur, raison))
+            log(self.serveur, ("%s kické de %s par %s (raison : %s)" % (victime, channel, auteur, raison)).decode("utf-8"))
             time.sleep(2)
             serv.join(channel)
     
index f6e4bc3dabbcf471f46cd6e123d9a403a5bac9b7..39e048dd179873afff176c4db307923e5e6d5b1c 100644 (file)
--- a/quotes.py
+++ b/quotes.py
@@ -148,6 +148,7 @@ class QuoteDB(object):
     def random(self):
         """ Sort une quote aléatoire """
         return random.choice(self.quotelist)
+
     def quotesfrom(self, author):
         """ Sort toutes les quotes de ``author`` """
         return [q for q in self.quotelist if q.author == author]