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
pipes
dangerzone/isolation_provider/container.py:6 /home/user/dangerzone/dangerzone/isolation_provider/container.py:6: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 import pipes
We use it only for logging escaping purposes.
The text was updated successfully, but these errors were encountered:
We can just replace pipes.quote() with shlex.quote() since python literally uses that under the hood.
pipes.quote()
shlex.quote()
Sorry, something went wrong.
Sounds good 👍
494f498
No branches or pull requests
We use it only for logging escaping purposes.
The text was updated successfully, but these errors were encountered: