From 6b47a44bdaa27668a419300dcccc4d93fae49e14 Mon Sep 17 00:00:00 2001 From: "Kevin S. Hahn" <kevinshahn@gmail.com> Date: Mon, 9 Mar 2015 11:55:59 -0700 Subject: [PATCH] fix typo, output inherits type from input --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.py b/util.py index 2c077654..6abfa217 100644 --- a/util.py +++ b/util.py @@ -158,7 +158,7 @@ def create_job(db, dataset): app_id = 'scitran/dcm2nii:latest' output_state = ['derived', ] output_type = 'nifti' - output_kind = dataset.nims_file_kinds # from input file + output_kinds = dataset.nims_file_kinds # from input file # TODO: determine job specifications if not app_id: -- GitLab