Skip to content

Commit c9d67d2

Browse files
committed
Merge remote-tracking branch 'upstream/maint/1.5.x'
2 parents 703de29 + e505e3f commit c9d67d2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.5.2 (March 23, 2022)
2+
======================
3+
A bugfix release ensuring compatibility with Python 3.7.
4+
5+
* FIX: Add ``unlink()`` with ``missing_ok`` for Python 3.7 (#695)
6+
17
1.5.1 (March 11, 2022)
28
======================
39
A bugfix release addressing several issues and improving the carpet plot.

niworkflows/interfaces/norm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def _get_ants_args(self):
444444
# Get the template specified by the user.
445445
ref_mask = get_template(
446446
self.inputs.template, desc="brain", suffix="mask", **template_spec
447-
)
447+
) or get_template(self.inputs.template, label="brain", suffix="mask", **template_spec)
448448

449449
# Default is explicit masking disabled
450450
args["fixed_image"] = ref_template

0 commit comments

Comments
 (0)