Skip to content

Commit 2c97645

Browse files
committed
Unlike configure options, configure sections are case-sensitive
1 parent 83f8164 commit 2c97645

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

osg_configure/modules/ce_attributes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def get_batch_systems_from_config(config: ConfigParser) -> str:
5656
if config.getboolean(section=batch_system, option="enabled", fallback=None):
5757
batch_systems.append(batch_system)
5858

59-
# Special case: Bosco (see SOFTWARE-3720); use the Bosco.batch argument.
60-
if config.getboolean("Bosco", "enabled", fallback=False):
61-
bosco_batch = config.get("Bosco", "batch", fallback=None)
59+
# Special case: BOSCO (see SOFTWARE-3720); use the BOSCO.batch argument.
60+
if config.getboolean("BOSCO", "enabled", fallback=False):
61+
bosco_batch = config.get("BOSCO", "batch", fallback=None)
6262
if bosco_batch:
6363
try:
6464
batch_systems.append(BATCH_SYSTEMS_CASE_MAP[bosco_batch.lower()])

0 commit comments

Comments
 (0)