kconfig: ignore nonexistent new names

This commit is contained in:
Renz Bagaporo 2021-03-30 15:24:40 +08:00
parent aecfbf966c
commit 89f572c933

View File

@ -119,8 +119,11 @@ class DeprecatedOptions(object):
return True return True
return False return False
else: else:
# otherwise if any of the nodes associated with the option was visible try:
return any(visibility.visible(node) for node in config.syms[opt].nodes) # otherwise if any of the nodes associated with the option was visible
return any(visibility.visible(node) for node in config.syms[opt].nodes)
except KeyError:
return False
if len(self.r_dic) > 0: if len(self.r_dic) > 0:
with open(path_output, 'a') as f_o: with open(path_output, 'a') as f_o: