Skip to content

Commit f3deb4e

Browse files
committed
BUG: Fix line_terminator option
1 parent 1468d25 commit f3deb4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/csvs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CSVFormatter(object):
3030
def __init__(self, obj, path_or_buf=None, sep=",", na_rep='',
3131
float_format=None, cols=None, header=True, index=True,
3232
index_label=None, mode='w', nanRep=None, encoding=None,
33-
compression='infer', quoting=None, line_terminator='\n',
33+
compression='infer', quoting=None, line_terminator=None,
3434
chunksize=None, tupleize_cols=False, quotechar='"',
3535
date_format=None, doublequote=True, escapechar=None,
3636
decimal='.'):

0 commit comments

Comments
 (0)