summaryrefslogtreecommitdiffstats
path: root/Lib/webbrowser.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-12-04 17:43:22 (GMT)
committerGuido van Rossum <guido@python.org>2001-12-04 17:43:22 (GMT)
commit4b402f207416a448197fc5696ae3a1e4e3fbcac1 (patch)
tree7a73a5d08568937b4ddcec525334c5f2fa914894 /Lib/webbrowser.py
parent64b206c19e764d12f61681359544938c45912262 (diff)
downloadcpython-4b402f207416a448197fc5696ae3a1e4e3fbcac1.zip
cpython-4b402f207416a448197fc5696ae3a1e4e3fbcac1.tar.gz
cpython-4b402f207416a448197fc5696ae3a1e4e3fbcac1.tar.bz2
Address SF patch #485789 (Stefan Schwarzer).
$BROWSER should be split on os.pathsep, not on ":".
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r--Lib/webbrowser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index 11c8301..d05c18b 100644
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -313,7 +313,7 @@ if sys.platform[:3] == "os2" and _iscommand("netscape.exe"):
if os.environ.has_key("BROWSER"):
# It's the user's responsibility to register handlers for any unknown
# browser referenced by this value, before calling open().
- _tryorder = os.environ["BROWSER"].split(":")
+ _tryorder = os.environ["BROWSER"].split(os.pathsep)
for cmd in _tryorder:
if not _browsers.has_key(cmd.lower()):