mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-03 07:10:15 +01:00
Merge branch 'develop' into js8call
This commit is contained in:
commit
9622cd6a2a
|
|
@ -253,7 +253,7 @@ class FeatureDetector(object):
|
|||
for line in process.stdout:
|
||||
matches = factory_regex.match(line.decode())
|
||||
if matches:
|
||||
drivers = [s.strip() for s in matches[1].split(", ")]
|
||||
drivers = [s.strip() for s in matches.group(1).split(", ")]
|
||||
|
||||
return driver in drivers
|
||||
except FileNotFoundError:
|
||||
|
|
|
|||
Loading…
Reference in a new issue