Skip to content

Commit 292e35c

Browse files
committed
FIX: Missed savetxt bstring
1 parent 37546c7 commit 292e35c

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)