Hide Forgot
Created attachment 678493 [details] Patch to use the form of import of PIL that is pillow compatible Description of problem: Fedora 19 is going to stop shipping python-imaging (PIL) and start shipping python-pillow instead. Rationale can be found on the feature page: https://fedoraproject.org/wiki/Features/Pillow . pillow should be compatible with PIL at the code level but the import statement changes slightly. PIL supports both of these: import Image from PIL import Image Pillow only supports the latter form. I grepped through the hplip source and found some occurrences of "import Image". I'll attach a patch that updates these to the new form of import.
Fixed rawhide. Thanks for the patch.