﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10732	PIL Image module Import Issue	haloween	nobody	"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
 }}}




"		closed	Core (Other)	1.0		duplicate	PIL,Image		Unreviewed	0	0	0	0	0	0
