Skip to content

Commit 430e875

Browse files
committed
Fix variable name reference
1 parent 650b1b1 commit 430e875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def configure_section(lines, config):
378378
for section_key in config:
379379
section_config = config[section_key]
380380
if not section_key in sections:
381-
raise RuntimeError("config key {} not in sections".format(key))
381+
raise RuntimeError("config key {} not in sections".format(section_key))
382382

383383
if section_key == 'target':
384384
for target in section_config:

0 commit comments

Comments
 (0)