From: Georg Brandl Date: Wed, 3 May 2006 17:46:13 +0000 (+0000) Subject: Add seamonkey to list of Windows browsers too. X-Git-Tag: v2.5b1~713 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7377ad2ecd77ed70137de8975e04e0aaa87d37c9;p=python Add seamonkey to list of Windows browsers too. --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 4494cbca13..4693fe7568 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)