summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-12-03 15:44:17 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-12-03 15:44:17 (GMT)
commit55c5abb52f6bcd0043da0db64ee002370106f1eb (patch)
tree61009e7b2a545b738b3d89bd8b43ef9db26c42da
parent5b443c6282e8ffd6873005b62c50e56fa149e277 (diff)
downloadcpython-55c5abb52f6bcd0043da0db64ee002370106f1eb.zip
cpython-55c5abb52f6bcd0043da0db64ee002370106f1eb.tar.gz
cpython-55c5abb52f6bcd0043da0db64ee002370106f1eb.tar.bz2
Missing comma in tuple initializer caused webbrowser.open() not to work at
all in MacPython. (why did noone ever notice this?)
-rw-r--r--Lib/webbrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index ca4976a..93d2a8b 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)
#