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
See http://docs.quantifiedcode.com/python-code-patterns/django/all/correctness/not_using_forward_slashes.html
We have working_path which will use Windows specific paths on Windows. Yet Django recommends forward slashes in most cases and Windows doesn't mind.
working_path
So likely we need a form of working_path that doesn't use os.path.sep but just uses "/". Something sort of exists for STATICFILES_DIR.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See http://docs.quantifiedcode.com/python-code-patterns/django/all/correctness/not_using_forward_slashes.html
We have
working_path
which will use Windows specific paths on Windows. Yet Django recommends forward slashes in most cases and Windows doesn't mind.So likely we need a form of working_path that doesn't use os.path.sep but just uses "/". Something sort of exists for STATICFILES_DIR.
The text was updated successfully, but these errors were encountered: