Adds explicit import of resize module to processors

This way users can write 'from imagekit.processors import *' and also use the
resize processors like so: 'resize.Crop(50, 50)'
This commit is contained in:
Eric Eldredge 2011-09-26 16:45:45 -04:00
parent 492febf7ec
commit 67477a6e15

View file

@ -7,6 +7,7 @@ from both the filesystem and the ORM.
"""
from imagekit.lib import *
from imagekit.processors import resize
class ProcessorPipeline(list):