← Back to team overview

openerp-india team mailing list archive

[Bug 930550] Re: 'import Image' instead of 'from PIL import Image'

 

** Changed in: qr-tools
       Status: New => Fix Released

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/930550

Title:
  'import Image' instead of 'from PIL import Image'

Status in LiveWallpaper:
  Fix Released
Status in OpenERP Addons (modules):
  Fix Released
Status in QR Tools:
  Fix Released

Bug description:
  While 'import Image' works with the standard PIL installation, it is
  not supported and not compatible Pillow, the friendly PIL fork.

  PIL is imported correctly in all other places:
  find -name "*.py" -print0 |xargs -0 grep -e '\bimport\b.*\bImage\b'

  *** IMPORTANT ***
  python-imaging package depends on python-imaging-compat which provides "import Image".
  However it will be dropped when "import Image" is fixed on Debian.
  For more details, see: http://lists.debian.org/debian-python/2013/02/msg00017.html

  *** How to fix ***
  Please use the following code instead of 'import Image':

  try:
      from PIL import Image
  except ImportError:
      import Image

To manage notifications about this bug go to:
https://bugs.launchpad.net/livewallpaper/+bug/930550/+subscriptions


References