Skip to content

Commit

Permalink
Merge pull request nipy#1445 from DimitriPapadopoulos/master
Browse files Browse the repository at this point in the history
Minor documentation fixes
  • Loading branch information
satra committed Apr 20, 2016
2 parents abe8bc7 + c9d8379 commit 5d335cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nipype/interfaces/dcm2nii.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Dcm2niiOutputSpec(TraitedSpec):


class Dcm2nii(CommandLine):
"""Uses MRICRON's dcm2nii to convert dicom files
"""Uses MRIcron's dcm2nii to convert dicom files
Examples
========
Expand Down Expand Up @@ -107,7 +107,7 @@ def _parse_stdout(self, stdout):
if line.startswith("Saving "):
out_file = line[len("Saving "):]
elif line.startswith("GZip..."):
# for gzipped outpus files are not absolute
# for gzipped output files are not absolute
fname = line[len("GZip..."):]
if len(files) and os.path.basename(files[-1]) == fname[:-3]:
# we are seeing a previously reported conversion
Expand Down

0 comments on commit 5d335cb

Please sign in to comment.