From 7377ad2ecd77ed70137de8975e04e0aaa87d37c9 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 3 May 2006 17:46:13 +0000 Subject: [PATCH] Add seamonkey to list of Windows browsers too. --- Lib/webbrowser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.40.0