diff options
| author | Dylan Araps <[email protected]> | 2017-07-07 11:18:59 +1000 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-07-07 11:18:59 +1000 |
| commit | bf88cd7881fce77298ec6df526a1784827acfbe4 (patch) | |
| tree | d15ff876d153073b649b9278c72a176b87cc7669 /setup.py | |
| parent | setup: Fix raise (diff) | |
| download | pywal-bf88cd7881fce77298ec6df526a1784827acfbe4.tar.xz pywal-bf88cd7881fce77298ec6df526a1784827acfbe4.zip | |
setup: Better error message.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,8 @@ import setuptools try: import pywal except (ImportError, SyntaxError): - raise "pywal requires Python 3.6 or greater." + print("error: pywal requires Python 3.6 or greater.") + quit(1) DESC = ( |