diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-07 11:02:02 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-07 11:02:02 +1000 |
| commit | a94d47c32505edd6d92ffd0610dd7b491174096d (patch) | |
| tree | ffb865b3443ebac1ab5fac2a7a5cb1aa8d75d28a /setup.py | |
| parent | b2afeed7e38cee9604ce26f3404da2d316d4c378 (diff) | |
setup: Fix raise
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ import setuptools try: import pywal except (ImportError, SyntaxError): - raise ImportError('pywal requires Python 3.6 or greater.') + raise "pywal requires Python 3.6 or greater." DESC = ( |
