Skip to content

Commit a42b40b

Browse files
authored
Merge pull request #3262 from effigies/fix/unknown
FIX: CI issues
2 parents e9217c2 + 9dc7f43 commit a42b40b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
os: linux
2-
dist: xenial
2+
dist: bionic
33

44
language: python
55
# our build matrix

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)