use the old api for python < 3.6

This commit is contained in:
Jakob Ketterl 2019-06-15 19:26:59 +02:00
parent 8af8f93434
commit 4e9ef89276
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class FeatureDetector(object):
def check_digiham_version(command):
try:
process = subprocess.Popen([command, "--version"], stdout=subprocess.PIPE)
version = LooseVersion(digiham_version_regex.match(process.stdout.readline().decode())[1])
version = LooseVersion(digiham_version_regex.match(process.stdout.readline().decode()).group(1))
process.wait(1)
return version >= required_version
except FileNotFoundError: