Commit 55c5abb5 authored by Jack Jansen's avatar Jack Jansen

Missing comma in tuple initializer caused webbrowser.open() not to work at

all in MacPython. (why did noone ever notice this?)
parent 5b443c62
......@@ -296,7 +296,7 @@ except ImportError:
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)
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment