Skip to content

Commit 12d7698

Browse files
committed
cue: fix issue introduced in 35f5bef
- was leading to jobs failing if setup file was not found in the first directory of search path
1 parent 4690a97 commit 12d7698

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cue.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ def source_set(name):
271271
setup[assign[0]] = assign[1]
272272
logger.debug('Done with setup file %s', set_file)
273273
break
274-
else:
275-
raise NameError("{0}Setup file {1}.set does not exist in SETUP_PATH search path ({2}){3}"
276-
.format(ANSI_RED, name, setup_dirs, ANSI_RESET))
274+
else:
275+
raise NameError("{0}Setup file {1}.set does not exist in SETUP_PATH search path ({2}){3}"
276+
.format(ANSI_RED, name, setup_dirs, ANSI_RESET))
277277

278278

279279
# update_release_local(var, location)

0 commit comments

Comments
 (0)