Skip to content

Commit a722ca4

Browse files
committed
FIX: Bad format string
1 parent e9217c2 commit a722ca4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/algorithms/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ def merge_rois(in_files, in_idxs, in_ref, dtype=None, out_file=None):
14081408
# to avoid memory errors
14091409
if op.splitext(in_ref)[1] == ".gz":
14101410
try:
1411-
iflogger.info("uncompress %i", in_ref)
1411+
iflogger.info("uncompress %s", in_ref)
14121412
sp.check_call(["gunzip", in_ref], stdout=sp.PIPE, shell=True)
14131413
in_ref = op.splitext(in_ref)[0]
14141414
except:

0 commit comments

Comments
 (0)