Opened 16 years ago
Closed 16 years ago
#10732 closed (duplicate)
PIL Image module Import Issue
Description ¶
I'm running django on Python 2.6.1.
There are 3 places where the Image from PIL is being imported.
But in my install i don't have PIL in my namespace.
A simple solution would fix that .
Replacing :
from PIL import Image
to
try: import Image except ImportError: from PIL import Image
Note:
See TracTickets
for help on using tickets.
Dupe of #6054