Merged
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -1966,7 +1966,7 @@ def _format_arg(self, name, spec, value):
if name == "lta_in" and self.inputs.invert_lta_in:
spec = "--lta-inv %s"
if name in ("fsl_out", "lta_out") and value is True:
value = self._list_outputs()[name]
value = self._list_outputs()[f'{name[:3]}_file']
return super()._format_arg(name, spec, value)

def _list_outputs(self):
Expand Down