diff options
author | Zhiming Wang <i@zhimingwang.org> | 2018-11-26 21:29:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-11-26 21:29:45 (GMT) |
commit | 8c281ed403fd915284d5bba2405d7c47f8195066 (patch) | |
tree | 9e18f217805ec108324a271bb0bb6fdc692e5111 /Misc | |
parent | 5a8c240b1d97de0bd6ced2a57cbcf26da19c1fcc (diff) | |
download | cpython-8c281ed403fd915284d5bba2405d7c47f8195066.zip cpython-8c281ed403fd915284d5bba2405d7c47f8195066.tar.gz cpython-8c281ed403fd915284d5bba2405d7c47f8195066.tar.bz2 |
bpo-35308: Fix regression where BROWSER env var is not respected. (GH-10693)
Regression introduced in e3ce695 and 25b804a, where the old parameter
update_tryorder to _synthesize was first ignored, then given the opposite
value in the attempt to fix bpo-31014.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst b/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst new file mode 100644 index 0000000..a33fe2e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-11-24-10-33-42.bpo-35308.9--2iy.rst @@ -0,0 +1,2 @@ +Fix regression in ``webbrowser`` where default browsers may be preferred +over browsers in the ``BROWSER`` environment variable. |