aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pywal/colors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/colors.py b/pywal/colors.py
index 18a237a..a51a0c7 100644
--- a/pywal/colors.py
+++ b/pywal/colors.py
@@ -22,7 +22,7 @@ def imagemagick(color_count, img):
def gen_colors(img, color_count):
"""Format the output from imagemagick into a list
of hex colors."""
- if not shutil.which("convert"):
+ if not shutil.which("convert"): # pragma: no cover
print("error: imagemagick not found, exiting...\n"
"error: wal requires imagemagick to function.")
exit(1)