summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2019-09-27 20:37:23 +0300
committerDylan Araps <dylan.araps@gmail.com>2019-09-27 20:37:23 +0300
commit445b8fcbb6ce5225089afe6909a96d0c3d901889 (patch)
tree73454b108ecc45668dc94a43de921271d873dba8 /setup.py
parent56c60ca2e6c66da452c29515065701e6d272f756 (diff)
misc: fix lint
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8345388..1df1801 100644
--- a/setup.py
+++ b/setup.py
@@ -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__