fix indent

This commit is contained in:
chrys87 2017-01-31 10:59:00 +01:00 committed by GitHub
parent 7c71ebd451
commit 9138fe2bfc

View File

@ -162,27 +162,26 @@ class driver():
def grabDevices(self): def grabDevices(self):
if not self._initialized: if not self._initialized:
return None return None
try: for fd in self.iDevices:
for fd in self.iDevices: try:
try: self.uDevices[fd] = UInput.from_device(self.iDevices[fd].fn)
self.uDevices[fd] = UInput.from_device(self.iDevices[fd].fn) except:
except:
try:
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: compat fallback: ' + str(e),debug.debugLevel.ERROR)
dev = self.iDevices[fd]
cap = dev.capabilities()
del cap[0]
self.uDevices[fd] = UInput(
cap,
dev.name,
)
except Exception as e:
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: init Uinput not possible: ' + str(e),debug.debugLevel.ERROR)
return
try: try:
self.iDevices[fd].grab() self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: compat fallback: ' + str(e),debug.debugLevel.ERROR)
dev = self.iDevices[fd]
cap = dev.capabilities()
del cap[0]
self.uDevices[fd] = UInput(
cap,
dev.name,
)
except Exception as e: except Exception as e:
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: grabing not possible: ' + str(e),debug.debugLevel.ERROR) self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: init Uinput not possible: ' + str(e),debug.debugLevel.ERROR)
return
try:
self.iDevices[fd].grab()
except Exception as e:
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: grabing not possible: ' + str(e),debug.debugLevel.ERROR)
# leve the old code until the new one is better tested # leve the old code until the new one is better tested
# for fd in self.iDevices: # for fd in self.iDevices:
# dev = self.iDevices[fd] # dev = self.iDevices[fd]
@ -199,7 +198,6 @@ class driver():
# ) # )
# dev.grab() # dev.grab()
def releaseDevices(self): def releaseDevices(self):
if not self._initialized: if not self._initialized:
return None return None