We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dfetch init
dfetch freeze
As mentioned by @sach-edna
When dfetch dumps a manifest (https://github.com/dfetch-org/dfetch/blob/main/dfetch/manifest/manifest.py#L231) for instance during dfetch init then the line_break argument is not specified. This seems to default to LF on all platforms. It is possible to provide a explicit line_break according to https://pyyaml.org/wiki/PyYAMLDocumentation#reference.
line_break
LF
We could use os.linesep to make the manifest native on each platform.
os.linesep
This would impact dfetch init and dfetch freeze
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As mentioned by @sach-edna
When dfetch dumps a manifest (https://github.com/dfetch-org/dfetch/blob/main/dfetch/manifest/manifest.py#L231) for instance during
dfetch init
then theline_break
argument is not specified. This seems to default toLF
on all platforms.It is possible to provide a explicit
line_break
according to https://pyyaml.org/wiki/PyYAMLDocumentation#reference.We could use
os.linesep
to make the manifest native on each platform.This would impact
dfetch init
anddfetch freeze
The text was updated successfully, but these errors were encountered: