Fix 'to_c' for config.h mappings (#22364)

master
Joel Challis 2023-10-29 23:41:44 +00:00 committed by GitHub
parent 4313b66edd
commit 559450a099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ def generate_config_items(kb_info_json, config_h_lines):
for config_key, info_dict in info_config_map.items(): for config_key, info_dict in info_config_map.items():
info_key = info_dict['info_key'] info_key = info_dict['info_key']
key_type = info_dict.get('value_type', 'raw') key_type = info_dict.get('value_type', 'raw')
to_config = info_dict.get('to_config', True) to_c = info_dict.get('to_c', True)
if not to_config: if not to_c:
continue continue
try: try: