diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-03 17:06:41 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-03 17:06:41 +0000 |
commit | 6afaeb757af0dbd8508a0f2352ade61e41bec84c (patch) | |
tree | f1b31bc7138b17ff39791bbb45aa81583c3b6e46 /Tools/webchecker/wcgui.py | |
parent | e5d0e8431f929cad2da77b63fe1b7dc0ff21a428 (diff) | |
download | cpython-git-6afaeb757af0dbd8508a0f2352ade61e41bec84c.tar.gz |
Convert print statements to function calls in Tools/.
Diffstat (limited to 'Tools/webchecker/wcgui.py')
-rwxr-xr-x | Tools/webchecker/wcgui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/webchecker/wcgui.py b/Tools/webchecker/wcgui.py index c6e216c225..9422df6cb0 100755 --- a/Tools/webchecker/wcgui.py +++ b/Tools/webchecker/wcgui.py @@ -76,8 +76,8 @@ def main(): opts, args = getopt.getopt(sys.argv[1:], 't:m:qva') except getopt.error as msg: sys.stdout = sys.stderr - print msg - print __doc__%vars(webchecker) + print(msg) + print(__doc__%vars(webchecker)) sys.exit(2) webchecker.verbose = webchecker.VERBOSE webchecker.nonames = webchecker.NONAMES |