Skip to content

Commit

Permalink
Fix duplicated carriage return on to_csv for Windows environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed Oct 31, 2020
1 parent f4fe5a3 commit cc56a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awswrangler/s3/_write_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _to_text(
s3_additional_kwargs=s3_additional_kwargs,
boto3_session=boto3_session,
encoding=encoding,
newline=None,
newline="",
) as f:
_logger.debug("pandas_kwargs: %s", pandas_kwargs)
if file_format == "csv":
Expand Down

0 comments on commit cc56a05

Please sign in to comment.