Update check-dependencies.py

This commit is contained in:
chrys87 2018-05-15 09:23:11 +02:00 committed by GitHub
parent e833640bb9
commit 4064177269
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,18 @@ else:
available = available and False
if available:
currentInstallation.append('vcsaDriver')
# pty emulation (screen driver)
print('ptyDriver (screen)')
available = True
try:
import pyte
print('pyte: OK')
except:
print('pyte: FAIL')
available = available and False
if available:
currentInstallation.append('ptyDriver')
# BRAILLE
print('')
print('braille driver')
@ -87,6 +98,17 @@ except:
available = available and False
if available:
currentInstallation.append('evdevDriver')
# pty emulation (input driver)
print('ptyDriver (Input)')
available = True
try:
import pyte
print('pyte: OK')
except:
print('pyte: FAIL')
available = available and False
if available:
currentInstallation.append('ptyDriver')
# SOUND
print('')
print('sound driver')