diff options
| -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 = ( |
