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

georg.brandl python-checkins at python.org
Fri Apr 28 18:31:18 CEST 2006


Author: georg.brandl
Date: Fri Apr 28 18:31:17 2006
New Revision: 45780

Modified:
   python/trunk/Lib/webbrowser.py
Log:
Add SeaMonkey to the list of Mozilla browsers.



Modified: python/trunk/Lib/webbrowser.py
==============================================================================
--- python/trunk/Lib/webbrowser.py	(original)
+++ python/trunk/Lib/webbrowser.py	Fri Apr 28 18:31:17 2006
@@ -447,7 +447,7 @@
     # First, the Mozilla/Netscape browsers
     for browser in ("mozilla-firefox", "firefox",
                     "mozilla-firebird", "firebird",
-                    "mozilla", "netscape"):
+                    "seamonkey", "mozilla", "netscape"):
         if _iscommand(browser):
             register(browser, None, Mozilla(browser))
 


More information about the Python-checkins mailing list