From f20e56fe44b6d5a194380cdd1d23884b9fb398d5 Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Wed, 24 Oct 2018 21:51:22 -0600 Subject: [PATCH] Fix python2/3 issue in install.py --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 44cbe63..669340a 100755 --- a/install.py +++ b/install.py @@ -58,7 +58,7 @@ def verify_requirements(): sys.exit(1) if get_shell() == "bash": version_text = subprocess.Popen("bash --version | head -1", shell=True, stdout=subprocess.PIPE).stdout.read() - m = re.search('(\d).(\d)', version_text) + m = re.search(b'(\d).(\d)', version_text) if m: major_version = int(m.group(1)) minor_version = int(m.group(2))