diff options
author | Ka-Ping Yee <ping@zesty.ca> | 2001-03-02 02:01:40 (GMT) |
---|---|---|
committer | Ka-Ping Yee <ping@zesty.ca> | 2001-03-02 02:01:40 (GMT) |
commit | 0a8c29be4b5314d4bf72cb391ab078f7483cf3f7 (patch) | |
tree | 0116bb4100c7831522f6c8d2b31b1dfd4d527225 /Lib/webbrowser.py | |
parent | fc35de409bc3606838daddf5fc30d3c0c3cfee11 (diff) | |
download | cpython-0a8c29be4b5314d4bf72cb391ab078f7483cf3f7.zip cpython-0a8c29be4b5314d4bf72cb391ab078f7483cf3f7.tar.gz cpython-0a8c29be4b5314d4bf72cb391ab078f7483cf3f7.tar.bz2 |
Clarify synopsis line a bit.
Remove -no-about-splash option (not understood by all Netscapes).
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r-- | Lib/webbrowser.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 6a60c24..77edf0d 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -1,4 +1,4 @@ -"""Remote-control interfaces to common browsers.""" +"""Interfaces for launching and remotely controlling Web browsers.""" import os import sys @@ -94,7 +94,7 @@ if os.environ.get("TERM") or os.environ.get("DISPLAY"): if _iscommand("w3m"): register("w3m", None, GenericBrowser("w3m %s")) - # X browsers have mre in the way of options + # X browsers have more in the way of options if os.environ.get("DISPLAY"): # First, the Netscape series if _iscommand("netscape") or _iscommand("mozilla"): @@ -111,7 +111,7 @@ if os.environ.get("TERM") or os.environ.get("DISPLAY"): rc = os.system(cmd) if rc: import time - os.system("%s -no-about-splash &" % self.name) + os.system("%s &" % self.name) time.sleep(PROCESS_CREATION_DELAY) rc = os.system(cmd) return not rc |