Skip to content

Commit

Permalink
Fixes #23016: somehow, sometimes fix in parent ticket fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ncharles committed Jul 5, 2023
1 parent ce707c3 commit 0b958d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/load-database/load-database.py
Expand Up @@ -144,7 +144,8 @@ def store_config_id(regex):
def get_inner_block(entry_list, return_values):
if isinstance(entry_list, list):
for entry in entry_list:
get_each_value_block(entry, return_values)
return_values = get_each_value_block(entry, return_values)
return return_values
else:
return get_each_value_block(entry_list, return_values)

Expand Down

0 comments on commit 0b958d6

Please sign in to comment.