summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst
diff options
context:
space:
mode:
authorBumsik Kim <k.bumsik@gmail.com>2018-07-03 11:30:06 (GMT)
committerPablo Galindo <Pablogsal@gmail.com>2018-07-03 11:30:06 (GMT)
commit3cf1f154edb88c108877729ea09f4ac174697fea (patch)
tree3ca79a59a98c1008666ed7b0677f62fe547abb0f /Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst
parent23401fb960bb94e6ea62d2999527968d53d3fc65 (diff)
downloadcpython-3cf1f154edb88c108877729ea09f4ac174697fea.zip
cpython-3cf1f154edb88c108877729ea09f4ac174697fea.tar.gz
cpython-3cf1f154edb88c108877729ea09f4ac174697fea.tar.bz2
bpo-34019: Fix wrong arguments for Opera Browser (#8047)
The Opera Browser was using a outdated command line invocation that resulted in an incorrect URL being opened in the browser when requested using the webbrowser module. * Correct the arguments passed to the Opera Browser when opening a new URL.
Diffstat (limited to 'Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst b/Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst
new file mode 100644
index 0000000..8a9fe79
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-07-02-05-59-11.bpo-34019.ZXJIife.rst
@@ -0,0 +1,2 @@
+webbrowser: Correct the arguments passed to Opera Browser when opening a new URL
+using the ``webbrowser`` module. Patch by Bumsik Kim.