Skip to content

Commit d7f9c89

Browse files
authored
Merge pull request #1356 from nipreps/fix/bug-in-1336
FIX: Passing ``bytes`` into ``str.join()``
2 parents 97d1f54 + 00d7efd commit d7f9c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mriqc/interfaces/webapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def _run_interface(self, runtime):
191191
'',
192192
'',
193193
'Payload:',
194-
payload_str,
194+
f'{payload_str}',
195195
]
196196
)
197197
config.loggers.interface.warning(errmsg)

0 commit comments

Comments
 (0)