|
@@ -430,8 +430,11 @@ def parseRXCode(rx_code, source_cul):
|
|
|
|
|
|
|
|
|
if not sucessfullyParsedITCode:
|
|
|
- if debug: log_write(" code parsed as 'default/cheap' Intertechno code")
|
|
|
- receivedForDevice, receivedCmnd = decodeInterTechnoRX(rx_code_stripped)
|
|
|
+ if debug: log_write(" treat code as 'default/cheap' Intertechno code...")
|
|
|
+ try:
|
|
|
+ receivedForDevice, receivedCmnd = decodeInterTechnoRX(rx_code_stripped)
|
|
|
+ except:
|
|
|
+ log_write(" Error parsing code as 'default/cheap' Intertechno code.")
|
|
|
if debug:
|
|
|
log_write(str(receivedForDevice) + ", " + str(receivedCmnd))
|
|
|
|