Opened 15 years ago

Closed 15 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

Change History (1)

comment:1 by Alex Gaynor, 15 years ago

Resolution: duplicate
Status: newclosed

Dupe of #6054

Note: See TracTickets for help on using tickets.
Back to Top