Skip to content

Commit

Permalink
Merge pull request #3262 from effigies/fix/unknown
Browse files Browse the repository at this point in the history
FIX: CI issues
  • Loading branch information
effigies authored Oct 21, 2020
2 parents e9217c2 + 9dc7f43 commit a42b40b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
os: linux
dist: xenial
dist: bionic

language: python
# our build matrix
Expand Down
2 changes: 1 addition & 1 deletion nipype/algorithms/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ def merge_rois(in_files, in_idxs, in_ref, dtype=None, out_file=None):
# to avoid memory errors
if op.splitext(in_ref)[1] == ".gz":
try:
iflogger.info("uncompress %i", in_ref)
iflogger.info("uncompress %s", in_ref)
sp.check_call(["gunzip", in_ref], stdout=sp.PIPE, shell=True)
in_ref = op.splitext(in_ref)[0]
except:
Expand Down

0 comments on commit a42b40b

Please sign in to comment.