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

ronald.oussoren python-checkins at python.org
Sun May 2 11:55:57 CEST 2010


Author: ronald.oussoren
Date: Sun May  2 11:55:57 2010
New Revision: 80700

Log:
Small update to r80698 to ensure that webbrowser.open
uses the default browser.


Modified:
   python/trunk/Lib/webbrowser.py

Modified: python/trunk/Lib/webbrowser.py
==============================================================================
--- python/trunk/Lib/webbrowser.py	(original)
+++ python/trunk/Lib/webbrowser.py	Sun May  2 11:55:57 2010
@@ -625,9 +625,9 @@
 
     # Don't clear _tryorder or _browsers since OS X can use above Unix support
     # (but we prefer using the OS X specific stuff)
-    register("MacOSX", None, MacOSXOSAScript('default'), -1)
     register("safari", None, MacOSXOSAScript('safari'), -1)
     register("firefox", None, MacOSXOSAScript('firefox'), -1)
+    register("MacOSX", None, MacOSXOSAScript('default'), -1)
 
 
 #


More information about the Python-checkins mailing list