We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1bada6 commit 5550b51Copy full SHA for 5550b51
nipype/interfaces/dcm2nii.py
@@ -118,8 +118,8 @@ def _parse_stdout(self, stdout):
118
base, filename, ext = split_filename(last_added_file)
119
bvecs.append(os.path.join(base, filename + ".bvec"))
120
bvals.append(os.path.join(base, filename + ".bval"))
121
- elif re.search('.*-->(.*)', line):
122
- val = re.search('.*-->(.*)', line)
+ elif re.search('.*->(.*)', line):
+ val = re.search('.*->(.*)', line)
123
val = val.groups()[0]
124
if isdefined(self.inputs.output_dir):
125
output_dir = self.inputs.output_dir
0 commit comments