Disable negative response double check for csv_only
This commit is contained in:
parent
a987db98c2
commit
24c54cf817
@ -1114,6 +1114,9 @@ class ELM:
|
||||
if line.startswith ("NR"):
|
||||
nr = line.split (':')[1]
|
||||
if nr in ['12']: # mark this request as unsupported only if previous response was also negative
|
||||
if mod_globals.opt_csv_only: # all unsupported commands must be removed immediately in csv_only mode
|
||||
self.notSupportedCommands[command] = cmdrsp
|
||||
else:
|
||||
if command in self.tmpNotSupportedCommands.keys():
|
||||
del self.tmpNotSupportedCommands[command]
|
||||
self.notSupportedCommands[command] = cmdrsp
|
||||
|
Loading…
x
Reference in New Issue
Block a user