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
While doing #132 I noticed trailing backslashes in paths are not used consistently.
When I tried making it consistent, tests failed.
https://github.com/platformdirs/platformdirs/blob/2.6.2/src/platformdirs/macos.py
with trailing /: 19, 29
without: 23, 34, ...
The text was updated successfully, but these errors were encountered:
The test fail in tests/test_comp_with_appdirs.py can be fixed by:
tests/test_comp_with_appdirs.py
assert new == old.rstrip("/")
Looks like this bug has been inherited from appdirs.
Sorry, something went wrong.
Fixed by #137.
No branches or pull requests
While doing #132 I noticed trailing backslashes in paths are not used consistently.
When I tried making it consistent, tests failed.
https://github.com/platformdirs/platformdirs/blob/2.6.2/src/platformdirs/macos.py
with trailing /: 19, 29
without: 23, 34, ...
The text was updated successfully, but these errors were encountered: