sebix / python-textile

A Python port of Textile, A humane web text generator
https://github.com/textile/python-textile/
Other
62 stars 43 forks source link

Support Pillow #10

Closed thmo closed 11 years ago

thmo commented 11 years ago

From https://bugzilla.redhat.com/show_bug.cgi?id=896295:

Fedora 19 is going to stop shipping python-imaging (PIL) and start shipping python-pillow instead. Rationale can be found on the feature page.

pillow should be compatible with PIL at the code level but the import statement changes slightly.

PIL supports both of these:

import Image

and

from PIL import Image

Pillow only supports the latter form.

sebix commented 11 years ago

Thanks abadger! There should be no problems at all with this fix.