Opened 16 years ago
Closed 16 years ago
#10732 closed (duplicate)
PIL Image module Import Issue
Reported by: | haloween | Owned by: | nobody |
---|---|---|---|
Component: | Core (Other) | Version: | 1.0 |
Severity: | Keywords: | PIL, Image | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
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