[Python-checkins] CVS: python/dist/src/Lib webbrowser.py,1.23,1.24

Jack Jansen jackjansen@users.sourceforge.net
Mon, 03 Dec 2001 07:44:19 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv10690/python/Lib

Modified Files:
	webbrowser.py 
Log Message:
Missing comma in tuple initializer caused webbrowser.open() not to work at
all in MacPython. (why did noone ever notice this?)

Index: webbrowser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/webbrowser.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** webbrowser.py	2001/11/25 14:35:58	1.23
--- webbrowser.py	2001/12/03 15:44:17	1.24
***************
*** 297,301 ****
      # internet-config is the only supported controller on MacOS,
      # so don't mess with the default!
!     _tryorder = ("internet-config")
      register("internet-config", InternetConfig)
  
--- 297,301 ----
      # internet-config is the only supported controller on MacOS,
      # so don't mess with the default!
!     _tryorder = ("internet-config", )
      register("internet-config", InternetConfig)