diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-21 08:18:18 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-21 08:18:18 (GMT) |
commit | 56b2665904c9c26a45417228b3534ade8b375c98 (patch) | |
tree | ff6f7e1f177e5b0d00a04ee2686b548261fc3ddf /Lib/webbrowser.py | |
parent | cd57ef1a472b581a137947de1d5e665182e15410 (diff) | |
download | cpython-56b2665904c9c26a45417228b3534ade8b375c98.zip cpython-56b2665904c9c26a45417228b3534ade8b375c98.tar.gz cpython-56b2665904c9c26a45417228b3534ade8b375c98.tar.bz2 |
#12601: fix typo.
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r-- | Lib/webbrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 41fd175..f3c53d4 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -237,7 +237,7 @@ class UnixBrowser(BaseBrowser): stdout=(self.redirect_stdout and inout or None), stderr=inout, preexec_fn=setsid) if remote: - # wait five secons. If the subprocess is not finished, the + # wait five seconds. If the subprocess is not finished, the # remote invocation has (hopefully) started a new instance. time.sleep(1) rc = p.poll() |