summaryrefslogtreecommitdiff
path: root/Tools/scripts/google.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-02-08 16:20:07 +0000
committerGuido van Rossum <guido@python.org>2002-02-08 16:20:07 +0000
commit72be0c7ff1e84d868089cedea3b567f94425a30e (patch)
tree1c063865ce9d02b42abbbf7afb3e73c2f96a1e44 /Tools/scripts/google.py
parent4722259ff31f13ef2032594d78038f84f63e3677 (diff)
downloadcpython-72be0c7ff1e84d868089cedea3b567f94425a30e.tar.gz
www.google.com is better than google.com.
Diffstat (limited to 'Tools/scripts/google.py')
-rwxr-xr-xTools/scripts/google.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/google.py b/Tools/scripts/google.py
index 3ca5f6eb2b..d9fe0acb18 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()