fix python 2.6 compatibility
diff --git a/wally/config.py b/wally/config.py
index 9626332..d8b7085 100644
--- a/wally/config.py
+++ b/wally/config.py
@@ -95,7 +95,10 @@
         else:
             record.levelname = prn_name
 
-        res = super(ColoredFormatter, self).format(record)
+        # super doesn't work here in 2.6 O_o
+        res = logging.Formatter.format(self, record)
+
+        # res = super(ColoredFormatter, self).format(record)
 
         # restore record, as it will be used by other formatters
         record.__dict__ = orig