Bug 895217

Summary: Update wallpapoz import of PIL for F19 switch to Pillow
Product: [Fedora] Fedora Reporter: Stephen Gallagher <sgallagh>
Component: wallpapozAssignee: Mamoru TASAKA <mtasaka>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: unspecified    
Version: rawhideCC: mtasaka
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2013-01-15 13:16:38 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 894484    
Attachments:
Description Flags
Change imports of PIL Library so they'll work with pillow none

Description Stephen Gallagher 2013-01-14 21:04:57 UTC
Created attachment 678428 [details]
Change imports of PIL Library so they'll work with pillow

Description of problem:

Fedora 19 is switching from using python-imaging (PIL) to python-pillow.  This is mostly backwards compatible but importing the python-imaging relevant libraries is undergoing a change.  In PIL, the libraries could either be imported like this:

import Image

or like this:

from PIL import Image

In python-pillow (and thus, Fedora19+), only the latter will work.  I've grepped the sources and found a few import statements that need to be updated.  Patch attached to fix those.  Patch should be upstreamable as PIL supports both the old and new forms of the import.

Version-Release number of selected component (if applicable):
wallpapoz-0.6.2-2.fc19

Comment 1 Mamoru TASAKA 2013-01-15 13:16:38 UTC
* Tue Jan 15 2013 Mamoru TASAKA <mtasaka> - 0.6.2-3
- Don't import Image directly and import PIL instead for
  F-19 Pillow conversion
  Patch from Stephen Gallagher <sgallagh>
  (bug 895217)

Committed, thank you.