Convert print statements to function calls in Tools/.

This commit is contained in:
Collin Winter 2007-08-03 17:06:41 +00:00
parent e5d0e8431f
commit 6afaeb757a
66 changed files with 777 additions and 779 deletions

View file

@ -28,6 +28,6 @@ except SystemExit as n:
sys.exit(n)
except:
t, v, tb = sys.exc_info()
print
print()
import cgi
cgi.print_exception(t, v, tb)