Browse Source

Fixed typo

master
Gijs 3 years ago
parent
commit
e7f5b820db
  1. 2
      asciiWriter/patterns.py

2
asciiWriter/patterns.py

@ -60,7 +60,7 @@ def image (path, threshold=128):
try:
from PIL import Image
except ImportError:
print('The image patter requires pillow to be installed.')
print('ERROR: The image pattern requires Pillow to be installed.\nInstall using `pip install pillow`')
exit()
im = Image.open(path).convert('L')

Loading…
Cancel
Save