Skip to content

Commit 00d7efd

Browse files
authored
FIX: Passing bytes into str.join()
Introduced-by: #1336.
1 parent 97d1f54 commit 00d7efd

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)