mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
Missing comma in tuple initializer caused webbrowser.open() not to work at
all in MacPython. (why did noone ever notice this?)
This commit is contained in:
parent
5b443c6282
commit
55c5abb52f
1 changed files with 1 additions and 1 deletions
|
|
@ -296,7 +296,7 @@ def open_new(self, url):
|
|||
else:
|
||||
# internet-config is the only supported controller on MacOS,
|
||||
# so don't mess with the default!
|
||||
_tryorder = ("internet-config")
|
||||
_tryorder = ("internet-config", )
|
||||
register("internet-config", InternetConfig)
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue