From 0cae0de22e3398ce7e1166deaf2c780265b7c097 Mon Sep 17 00:00:00 2001 From: chrys Date: Tue, 15 May 2018 22:41:07 +0200 Subject: [PATCH] fix message --- check-dependencies.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/check-dependencies.py b/check-dependencies.py index 56fa1806..9a37ae75 100755 --- a/check-dependencies.py +++ b/check-dependencies.py @@ -51,7 +51,7 @@ else: if available: currentInstallation.append('vcsaDriver') # pty emulation (screen driver) -print('ptyDriver (screen)') +print('ptyDriver') available = True try: import pyte @@ -60,7 +60,7 @@ except: print('pyte: FAIL') available = available and False if available: - currentInstallation.append('ptyDriver') + currentInstallation.append('ptyDriver (screen)') # BRAILLE print('') @@ -99,7 +99,7 @@ except: if available: currentInstallation.append('evdevDriver') # pty emulation (input driver) -print('ptyDriver (Input)') +print('ptyDriver') available = True try: import pyte @@ -108,7 +108,7 @@ except: print('pyte: FAIL') available = available and False if available: - currentInstallation.append('ptyDriver') + currentInstallation.append('ptyDriver (Input)') # SOUND print('') print('sound driver')