diff options
| -rw-r--r-- | pywal/magic.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pywal/magic.py b/pywal/magic.py index 406a513..d4dd213 100644 --- a/pywal/magic.py +++ b/pywal/magic.py @@ -41,6 +41,11 @@ def gen_colors(img): "color palette, trying a larger palette size", COLOR_COUNT + index) + if index > 20: + print("colors: Imagemagick couldn't generate a suitable scheme", + "for the image. Exiting...") + quit(1) + # Remove the first element, which isn't a color. del raw_colors[0] |
