Skip to content

Commit

Permalink
Convert \n in script_jl to \r\n for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Sep 13, 2018
1 parent 9a93984 commit 7c395e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions julia/python_jl.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
end
end
"""
if os.linesep != "\n": # in Windows
script_jl = script_jl.replace("\n", os.linesep)


def remove_julia_options(args):
Expand Down

0 comments on commit 7c395e3

Please sign in to comment.