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
Things have changed in the latest python 3 release (3.11)...
3.11
[!] Something went wrong while reading firefox profiles.ini ERROR:root:Traceback (most recent call last): File "/home/id/.builds/firefox/ExtAnalysis/core/localextensions.py", line 179, in firefox with open(firefox_profile, 'rU') as ini_source: ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid mode: 'rU'
Here is some discussion about it Cantera/cantera#1325
The text was updated successfully, but these errors were encountered:
The suggested solution seems to be:
Stop using deprecated flag U.... (Quote from stack*):
Since the 'rU' file read-mode is deprecated in python3 so you have to update that code to this. (Change rU to r)
Sorry, something went wrong.
No branches or pull requests
Things have changed in the latest python 3 release (
3.11
)...Here is some discussion about it Cantera/cantera#1325
The text was updated successfully, but these errors were encountered: