diff options
| author | Georg Brandl <georg@python.org> | 2006-05-03 17:46:13 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2006-05-03 17:46:13 (GMT) |
| commit | 7377ad2ecd77ed70137de8975e04e0aaa87d37c9 (patch) | |
| tree | ce7454c601649c11bac5ba7514a55471b22e8bc6 /Lib/webbrowser.py | |
| parent | d8accb32a54d2157c50e6b8de883373ec15f52c8 (diff) | |
| download | cpython-7377ad2ecd77ed70137de8975e04e0aaa87d37c9.zip cpython-7377ad2ecd77ed70137de8975e04e0aaa87d37c9.tar.gz cpython-7377ad2ecd77ed70137de8975e04e0aaa87d37c9.tar.bz2 | |
Add seamonkey to list of Windows browsers too.
Diffstat (limited to 'Lib/webbrowser.py')
| -rw-r--r-- | Lib/webbrowser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 4494cbc..4693fe7 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -509,7 +509,8 @@ if sys.platform[:3] == "win": _tryorder = [] _browsers = {} # Prefer mozilla/netscape/opera if present - for browser in ("firefox", "firebird", "mozilla", "netscape", "opera"): + for browser in ("firefox", "firebird", "seamonkey", "mozilla", + "netscape", "opera"): if _iscommand(browser): register(browser, None, BackgroundBrowser(browser)) register("windows-default", WindowsDefault) |
