Skip to content

Commit 1df192d

Browse files
author
y-p
committed
BUG: refurbished to_csv ignores file mode GH3263
1 parent 8e144c7 commit 1df192d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ def to_csv(self, path_or_buf, sep=",", na_rep='', float_format=None,
13511351
quoting=quoting,na_rep=na_rep,
13521352
float_format=float_format, cols=cols,
13531353
header=header, index=index,
1354-
index_label=index_label,
1354+
index_label=index_label,mode=mode,
13551355
chunksize=chunksize,engine=kwds.get("engine") )
13561356
formatter.save()
13571357

0 commit comments

Comments
 (0)