Skip to content

Commit 3052441

Browse files
committed
Correct ITERATE_OPTIONS
1 parent 1a5ed61 commit 3052441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easyblock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,7 @@ def handle_iterate_opts(self):
23802380
# only needs to be done during first iteration, since after that the options won't be lists anymore
23812381
if self.iter_idx == 0 and self.det_iter_cnt() > 1:
23822382
# keep track of list, supply first element as first option to handle
2383-
for opt in self.cfg.ITERATE_OPTIONS:
2383+
for opt in ITERATE_OPTIONS:
23842384
self.iter_opts[opt] = self.cfg[opt] # copy
23852385
self.log.debug("Iterating opt %s: %s", opt, self.iter_opts[opt])
23862386

0 commit comments

Comments
 (0)