diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2019-09-27 20:37:23 +0300 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2019-09-27 20:37:23 +0300 |
| commit | 445b8fcbb6ce5225089afe6909a96d0c3d901889 (patch) | |
| tree | 73454b108ecc45668dc94a43de921271d873dba8 /setup.py | |
| parent | 56c60ca2e6c66da452c29515065701e6d272f756 (diff) | |
misc: fix lint
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,11 +1,12 @@ """wal - setup.py""" import setuptools +import sys try: import pywal except ImportError: print("error: pywal requires Python 3.5 or greater.") - quit(1) + sys.exit(1) LONG_DESC = open('README.md').read() VERSION = pywal.__version__ |
