diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-02 09:55:57 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-02 09:55:57 (GMT) |
commit | b0153cf7ac25d8c3430148b4987c1e82fc8e9132 (patch) | |
tree | b6a0c9254e83d6a6eb1d23b3f91964c6b298c13e /Lib | |
parent | 4ef1c7e7efbd8827b9f97c73d0eb9a31604e83f2 (diff) | |
download | cpython-b0153cf7ac25d8c3430148b4987c1e82fc8e9132.zip cpython-b0153cf7ac25d8c3430148b4987c1e82fc8e9132.tar.gz cpython-b0153cf7ac25d8c3430148b4987c1e82fc8e9132.tar.bz2 |
Small update to r80698 to ensure that webbrowser.open
uses the default browser.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/webbrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 45e0b54..ca30c4e 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -625,9 +625,9 @@ if sys.platform == 'darwin': # Don't clear _tryorder or _browsers since OS X can use above Unix support # (but we prefer using the OS X specific stuff) - register("MacOSX", None, MacOSXOSAScript('default'), -1) register("safari", None, MacOSXOSAScript('safari'), -1) register("firefox", None, MacOSXOSAScript('firefox'), -1) + register("MacOSX", None, MacOSXOSAScript('default'), -1) # |