Skip to content

Commit 8b78870

Browse files
authored
Merge pull request #3704 from mgxd/fix/np-save
FIX: Missed np.savetxt bstring
2 parents 37546c7 + 292e35c commit 8b78870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/algorithms/confounds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def _run_interface(self, runtime):
208208

209209
if self.inputs.save_nstd:
210210
out_file = self._gen_fname("dvars_nstd", ext="tsv")
211-
np.savetxt(out_file, dvars[1], fmt=b"%0.6f")
211+
np.savetxt(out_file, dvars[1], fmt="%0.6f")
212212
self._results["out_nstd"] = out_file
213213

214214
if self.inputs.save_plot:

0 commit comments

Comments
 (0)