From 14902dbab9f61e5469ee2c8be3ea5b44fce73aba Mon Sep 17 00:00:00 2001 From: chrys Date: Tue, 22 May 2018 21:43:53 +0200 Subject: [PATCH] fix syntax --- src/fenrirscreenreader/inputDriver/evdevDriver.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/fenrirscreenreader/inputDriver/evdevDriver.py b/src/fenrirscreenreader/inputDriver/evdevDriver.py index 164ace5f..c7295d62 100644 --- a/src/fenrirscreenreader/inputDriver/evdevDriver.py +++ b/src/fenrirscreenreader/inputDriver/evdevDriver.py @@ -326,7 +326,6 @@ class driver(inputDriver): if not self.env['runtime']['settingsManager'].getSettingAsBool('keyboard', 'grabDevices'): return try: - print('grab') self.iDevices[fd].grab() self.gDevices[fd] = True self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: grab device ('+ str(self.iDevices[fd].name) + ')',debug.debugLevel.INFO) @@ -338,7 +337,6 @@ class driver(inputDriver): if not self.env['runtime']['settingsManager'].getSettingAsBool('keyboard', 'grabDevices'): return try: - print('ungrab') self.gDevices[fd] = False self.iDevices[fd].ungrab() self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: ungrab device ('+ str(self.iDevices[fd].name) + ')',debug.debugLevel.INFO)