diff options
author | Guido van Rossum <guido@python.org> | 2002-02-08 16:20:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-02-08 16:20:07 (GMT) |
commit | 65f50156cd26e222aa659c124a5a7f236444ebfb (patch) | |
tree | 4e171302e7beea8c1dc49ee02b15e4ca33e3de3d /Tools/scripts | |
parent | 745b4609cb932a493033b1b7d7e851716ac8e413 (diff) | |
download | cpython-65f50156cd26e222aa659c124a5a7f236444ebfb.zip cpython-65f50156cd26e222aa659c124a5a7f236444ebfb.tar.gz cpython-65f50156cd26e222aa659c124a5a7f236444ebfb.tar.bz2 |
www.google.com is better than google.com.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/google.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/google.py b/Tools/scripts/google.py index 3ca5f6e..d9fe0ac 100755 --- a/Tools/scripts/google.py +++ b/Tools/scripts/google.py @@ -16,7 +16,7 @@ def main(): arg = arg.replace(' ', '+') list.append(arg) s = '+'.join(list) - url = "http://google.com/search?q=%s" % s + url = "http://www.google.com/search?q=%s" % s webbrowser.open(url) main() |