conditionally import image module

This commit is contained in:
j 2012-01-16 11:39:31 +05:30
parent 7243eefb8b
commit 95e5129f1a

View file

@ -15,7 +15,11 @@ from file import *
from form import *
from format import *
from html import *
from image import *
#image depends on PIL, not easy enough to instal on osx
try:
from image import *
except:
pass
from location import *
from movie import *
from normalize import *