aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoraschey <[email protected]>2019-12-01 14:28:23 -0600
committeraschey <[email protected]>2019-12-01 14:28:23 -0600
commit85526b657107c8fa08861a6c6ef3790c5bc14fac (patch)
treee1881785495c3e6fc5b5fa1c7b23b26737072090 /setup.py
parentadded features for saving user themes and loading random themes (diff)
parentMerge pull request #457 from LoLei/456-fix-FileNotFoundError (diff)
downloadpywal-85526b657107c8fa08861a6c6ef3790c5bc14fac.tar.xz
pywal-85526b657107c8fa08861a6c6ef3790c5bc14fac.zip
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__