Merge branch 'master' of git@github.com:flynx/ImageGrid

This commit is contained in:
Alex A. Naanou 2014-08-15 06:04:20 +04:00
commit 24be412603

8
buildcache.py Executable file → Normal file
View File

@ -2,14 +2,18 @@
#=======================================================================
__version__ = '''0.0.01'''
__sub_version__ = '''20140121064724'''
__sub_version__ = '''20140814025456'''
__copyright__ = '''(c) Alex A. Naanou 2011'''
#-----------------------------------------------------------------------
import os
import Image
# support both pil and pillow...
try:
import Image
except ImportError:
from PIL import Image
import json
import sha
import urllib2