glyphicons-sprite-generator
glyphicons-sprite-generator copied to clipboard
On OSX the sprite-generator fails to load the PIL library
The solution turned out to be changing from PIL import Image
into import Image
.
See also http://stackoverflow.com/questions/8863917/importerror-no-module-named-pil.
Awesome script by the way :D
Interesting, thanks -- seems that installing PIL on my mac puts it in the PIL namespace. Will look to update the import soon.