Skip to content

Commit ec6d0f6

Browse files
authored
import Pillow by default
Fixes madmaze#149
1 parent 5d4c3a7 commit ec6d0f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pytesseract.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
'''
66

77
try:
8-
import Image
9-
except ImportError:
108
from PIL import Image
9+
except ImportError:
10+
import Image
1111

1212
import os
1313
import sys

0 commit comments

Comments
 (0)