Skip to content

Commit c9f6458

Browse files
author
Ben Cipollini
committed
TST: don't force binary mode for writing file.
1 parent 252649b commit c9f6458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/tests/test_utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def test_csvReader():
149149
"baz,goodbye,0.3\n"]
150150
for x in range(2):
151151
fd, name = mkstemp(suffix=".csv")
152-
with open(name, 'w+b') as fid:
152+
with open(name, 'w') as fid:
153153
reader = utility.CSVReader()
154154
if x % 2 == 0:
155155
fid.write(header)

0 commit comments

Comments
 (0)