Description: Disable irc.buffer.LenientDecodingLineBuffer.
 LenientDecodingLineBuffer was introduced by irc 8.7 so is not available on
 Debian at the moment.
Author: Daniele Tricoli <eriol@mornie.org>
Forwarded: not-needed
Last-Update: 2015-05-01

--- a/cobe/bot.py
+++ b/cobe/bot.py
@@ -13,7 +13,9 @@
         irc.client.SimpleIRCClient.__init__(self)
 
         # Fall back to latin-1 if invalid utf-8 is provided.
-        irc.client.ServerConnection.buffer_class = irc.buffer.LenientDecodingLineBuffer
+        # On Debian is disabled because LenientDecodingLineBuffer was
+        # introduced by irc 8.7.
+        # irc.client.ServerConnection.buffer_class = irc.buffer.LenientDecodingLineBuffer
 
         self.brain = brain
         self.nick = nick
