From ffea0f9b912b91b6155600d50d6280ce4eb6c361 Mon Sep 17 00:00:00 2001 From: Justin D Eyster Date: Mon, 28 Sep 2020 14:34:31 -0400 Subject: [PATCH] Fix Python 2 error message (#373) * Fix py2 error * Fix flake8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d0de87da2..9d3f4be98 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import sys if sys.version_info.major == 2: sys.exit( - 'Sorry, Python 2 is no longer supported by detect-secrets. Refer to', + 'Sorry, Python 2 is no longer supported by detect-secrets. Refer to' + ' http://ibm.biz/upgrade-to-py3 for instructions on upgraing to Python 3.', )