Skip to content

Commit

Permalink
Update launcher.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bud42 committed May 10, 2022
1 parent a54fd70 commit 59583c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dax/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,8 +635,9 @@ def build_sgp_processors(self, xnat, project_data, includesubj=None):

if len(sgp_processors) == 0:
LOGGER.debug('no sgp processors')
return

for (subj, processor) in sorted(subjects):
for subj in sorted(subjects):
for processor in sgp_processors:
# Get list of inputs sets (not yet matched with existing)
inputsets = processor.parse_subject(subj, project_data)
Expand Down

0 comments on commit 59583c9

Please sign in to comment.