aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2019-09-27 20:37:23 +0300
committerDylan Araps <[email protected]>2019-09-27 20:37:23 +0300
commit445b8fcbb6ce5225089afe6909a96d0c3d901889 (patch)
tree73454b108ecc45668dc94a43de921271d873dba8
parentmisc: fix lint (diff)
downloadpywal-445b8fcbb6ce5225089afe6909a96d0c3d901889.tar.xz
pywal-445b8fcbb6ce5225089afe6909a96d0c3d901889.zip
misc: fix lint
-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__