We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abe8bc7 + c9d8379 commit 5d335cbCopy full SHA for 5d335cb
nipype/interfaces/dcm2nii.py
@@ -49,7 +49,7 @@ class Dcm2niiOutputSpec(TraitedSpec):
49
50
51
class Dcm2nii(CommandLine):
52
- """Uses MRICRON's dcm2nii to convert dicom files
+ """Uses MRIcron's dcm2nii to convert dicom files
53
54
Examples
55
========
@@ -107,7 +107,7 @@ def _parse_stdout(self, stdout):
107
if line.startswith("Saving "):
108
out_file = line[len("Saving "):]
109
elif line.startswith("GZip..."):
110
- # for gzipped outpus files are not absolute
+ # for gzipped output files are not absolute
111
fname = line[len("GZip..."):]
112
if len(files) and os.path.basename(files[-1]) == fname[:-3]:
113
# we are seeing a previously reported conversion
0 commit comments