diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-10-17 15:20:01 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-10-17 15:20:01 +1100 |
| commit | 72e3c02a2b40f7d232688cce007a4161a10e54ab (patch) | |
| tree | 285acf0be93bddd2733e996256ca74459473eb4c /pywal/backends | |
| parent | 580f5b76bea82d31cf2c189b5db425c142d8cfec (diff) | |
general: fix lint
Diffstat (limited to 'pywal/backends')
| -rw-r--r-- | pywal/backends/wal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/backends/wal.py b/pywal/backends/wal.py index 1a85e17..a75fdc5 100644 --- a/pywal/backends/wal.py +++ b/pywal/backends/wal.py @@ -24,7 +24,7 @@ def has_im(): if shutil.which("magick"): return ["magick", "convert"] - elif shutil.which("convert"): + if shutil.which("convert"): return ["convert"] logging.error("Imagemagick wasn't found on your system.") |
