Skip to content

Commit a759f05

Browse files
committed
configure.py: fix edge case
1 parent bedc0ea commit a759f05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ def parse_example_config(known_args, config):
591591
with open(rust_dir + "/bootstrap.example.toml") as example_config:
592592
example_lines = example_config.read().split("\n")
593593
for line in example_lines:
594-
if line.count("=") == 1 and not line.startswith("# "):
594+
if line.count("=") >= 1 and not line.startswith("# "):
595595
key = line.split("=")[0]
596596
key = key.strip(" #")
597597
parts = key.split(".")

0 commit comments

Comments
 (0)