diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-07 11:18:59 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-07 11:18:59 +1000 |
| commit | bf88cd7881fce77298ec6df526a1784827acfbe4 (patch) | |
| tree | d15ff876d153073b649b9278c72a176b87cc7669 | |
| parent | a94d47c32505edd6d92ffd0610dd7b491174096d (diff) | |
setup: Better error message.
| -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 = ( |
