[Python-checkins] r45889 - python/trunk/Lib/webbrowser.py

georg.brandl python-checkins at python.org
Wed May 3 19:46:14 CEST 2006


Author: georg.brandl
Date: Wed May  3 19:46:13 2006
New Revision: 45889

Modified:
   python/trunk/Lib/webbrowser.py
Log:
Add seamonkey to list of Windows browsers too.



Modified: python/trunk/Lib/webbrowser.py
==============================================================================
--- python/trunk/Lib/webbrowser.py	(original)
+++ python/trunk/Lib/webbrowser.py	Wed May  3 19:46:13 2006
@@ -509,7 +509,8 @@
     _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)


More information about the Python-checkins mailing list