summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoraschey <aschey13@gmail.com>2019-12-01 14:28:23 -0600
committeraschey <aschey13@gmail.com>2019-12-01 14:28:23 -0600
commit85526b657107c8fa08861a6c6ef3790c5bc14fac (patch)
treee1881785495c3e6fc5b5fa1c7b23b26737072090 /setup.py
parent788533e5c20132c727e2f287dce6ada64ebd5872 (diff)
parentc18f4014f969504deaeb692aa88660ee4cb10f3f (diff)
Merge branch 'master' into theme_save
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__