From e7f5b820dbe48f0d00a04f19a0f46e617c1f70d3 Mon Sep 17 00:00:00 2001 From: Gijs Date: Sat, 8 May 2021 17:52:28 +0200 Subject: [PATCH] Fixed typo --- asciiWriter/patterns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asciiWriter/patterns.py b/asciiWriter/patterns.py index 1cdacaf..26f9491 100644 --- a/asciiWriter/patterns.py +++ b/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')