[05:09:47] <sunhay> Having an issue with pillow (just installed via pip install pillow on Mac OSX 10.9). I'm attempting a image.save(buffer, 'BMP') and am getting a KeyError(ext) # unknown extension exception
[05:10:21] <sunhay> I did a print of SAVE just before this exception is thrown and it looks like the entire dictionary is empty... anyone know why none of the format saves are getting registered? :o
[05:54:43] <sunhay> nevermind! fixed it by changing 'import Image' -> 'from PIL import Image'