remove debugging output

This commit is contained in:
Jakob Ketterl 2020-04-10 17:21:53 +02:00
parent c30740c4e3
commit aa29836039
1 changed files with 0 additions and 1 deletions

View File

@ -253,7 +253,6 @@ class FeatureDetector(object):
matches = factory_regex.match(line.decode()) matches = factory_regex.match(line.decode())
if matches: if matches:
drivers = [s.strip() for s in matches[1].split(", ")] drivers = [s.strip() for s in matches[1].split(", ")]
logger.debug(drivers)
return driver in drivers return driver in drivers
except FileNotFoundError: except FileNotFoundError: