From 445b8fcbb6ce5225089afe6909a96d0c3d901889 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 27 Sep 2019 20:37:23 +0300 Subject: misc: fix lint --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') 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__ -- cgit v1.2.3