Skip to content

Commit 80f5f1d

Browse files
author
casparvl casparvl
committed
Fix indentation issue
1 parent 279e08f commit 80f5f1d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tasks/build.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -651,13 +651,13 @@ def prepare_jobs(pr, cfg, event_info, action_filter, build_params):
651651
# Optionally add accelerator to the context
652652
if 'accel' in partition_info:
653653
context['accelerator'] = partition_info['accel']
654+
log(f"{fn}(): context is '{json.dumps(context, indent=4)}'")
654655

655-
log(f"{fn}(): context is '{json.dumps(context, indent=4)}'")
656-
if not action_filter.check_filters(context):
657-
log(f"{fn}(): context does NOT satisfy filter(s), skipping")
658-
continue
659-
else:
660-
log(f"{fn}(): context DOES satisfy filter(s), going on with job")
656+
if not action_filter.check_filters(context):
657+
log(f"{fn}(): context does NOT satisfy filter(s), skipping")
658+
continue
659+
else:
660+
log(f"{fn}(): context DOES satisfy filter(s), going on with job")
661661
# we reached this point when the filter matched (otherwise we
662662
# 'continue' with the next repository)
663663
# We create a specific job directory for the architecture that is going to be build 'for:'

0 commit comments

Comments
 (0)