diff options
author | Laurie Clark-Michalek <bluepeppers@archlinux.us> | 2014-02-04 12:43:01 +0000 |
---|---|---|
committer | Laurie Clark-Michalek <bluepeppers@archlinux.us> | 2014-02-04 12:43:01 +0000 |
commit | 3c8265265791a2a58bbd90c444f9929094f0da33 (patch) | |
tree | 6d7190f0acb2bab60936354c07927d952d9bd73b | |
parent | c1d1fedccc843ada034d7bcbfe89d00cfc58fea3 (diff) |
Added explicit error message about lack of imagemagick (Fixes #17)
-rwxr-xr-x | archey3 | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -630,6 +630,8 @@ def screenshot(state): state.logger.critical('Screenshot failed with return code {0}.'.format( e.returncode)) raise + except subprocess.FileNotFoundError: + print("Could not find import command, install imagemagick") def color(state, code, bold=False): """ |