From: Jack Jansen Date: Mon, 3 Dec 2001 15:44:17 +0000 (+0000) Subject: Missing comma in tuple initializer caused webbrowser.open() not to work at X-Git-Tag: v2.2.1c1~600 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55c5abb52f6bcd0043da0db64ee002370106f1eb;p=thirdparty%2FPython%2Fcpython.git Missing comma in tuple initializer caused webbrowser.open() not to work at all in MacPython. (why did noone ever notice this?) --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index ca4976a30f71..93d2a8bc90c5 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -296,7 +296,7 @@ except ImportError: else: # internet-config is the only supported controller on MacOS, # so don't mess with the default! - _tryorder = ("internet-config") + _tryorder = ("internet-config", ) register("internet-config", InternetConfig) #