Description: take boolean into account at converters.py
Author: Jonas Meurer <jonas@freesources.org>
Last-Update: 2007-04-23

--- a/MySQLdb/converters.py
+++ b/MySQLdb/converters.py
@@ -163,5 +163,10 @@
 except ImportError:
     pass
 
-
+try:
+    from types import BooleanType
+    def Bool2Str(s, d): return str(int(s))
+    conversions[BooleanType] = Bool2Str
+except ImportError:
+    pass
 
