Skip to content

Commit

Permalink
Update solc.py
Browse files Browse the repository at this point in the history
add strip() to prevent \r in windows
  • Loading branch information
alan890104 authored Apr 26, 2023
1 parent 144cbf9 commit 11a000f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solcix/compile/solc.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ def _compile_combined_json(
solc_path = get_executable(solc_version)

if output_values is None:
combined_json = _get_combined_json_outputs(solc_path)
combined_json = _get_combined_json_outputs(solc_path).strip()
else:
combined_json = ",".join(output_values)

Expand Down

0 comments on commit 11a000f

Please sign in to comment.