aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authordylan <[email protected]>2020-01-23 10:38:33 +0200
committerGitHub <[email protected]>2020-01-23 10:38:33 +0200
commitc1d90676f9074cf4131f8cb94aeb2344d6fc8ecc (patch)
tree63e7fe384b10449fd893b5a2da3e90199df21dae /setup.py
parentbackground and comment colors corrected (diff)
parentMerge pull request #389 from aschey/theme_save (diff)
downloadpywal-c1d90676f9074cf4131f8cb94aeb2344d6fc8ecc.tar.xz
pywal-c1d90676f9074cf4131f8cb94aeb2344d6fc8ecc.zip
Merge branch 'master' into add-vs-code-support
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..2324707 100644
--- a/setup.py
+++ b/setup.py
@@ -1,11 +1,12 @@
"""wal - setup.py"""
+import sys
import setuptools
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__