www.google.com is better than google.com.

This commit is contained in:
Guido van Rossum 2002-02-08 16:20:07 +00:00
parent 745b4609cb
commit 65f50156cd
1 changed files with 1 additions and 1 deletions

View File

@ -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()