Browse Source

Merge pull request #24 from zamaudio/fix-fedora

utils/png2rgba.py: Fix for Fedora's python PIL
pull/26/head
Filipe Coelho GitHub 7 years ago
parent
commit
76233283b7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      utils/png2rgba.py

+ 4
- 1
utils/png2rgba.py View File

@@ -16,7 +16,10 @@
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

import os, numpy, sys
import Image
try:
import Image
except:
from PIL import Image

# -----------------------------------------------------



Loading…
Cancel
Save