diff options
author | Lakin Wecker <none@none> | 2009-06-01 16:43:59 +0000 |
---|---|---|
committer | Lakin Wecker <none@none> | 2009-06-01 16:43:59 +0000 |
commit | bcac4e137da9675a5ba2ba4dfe0404288749e33a (patch) | |
tree | 9640ef6ef03106e218e9623e852e4c4f5fd42f8e /cherrypy/test/modpy.py | |
parent | 03f15ebb2a21e24a2a7458b9022ce05e89137fa4 (diff) | |
download | cherrypy-git-bcac4e137da9675a5ba2ba4dfe0404288749e33a.tar.gz |
trunk - adding a py3util module that will normalize as many differences between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b''
Diffstat (limited to 'cherrypy/test/modpy.py')
-rw-r--r-- | cherrypy/test/modpy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/modpy.py b/cherrypy/test/modpy.py index f6659475..a39238f4 100644 --- a/cherrypy/test/modpy.py +++ b/cherrypy/test/modpy.py @@ -116,7 +116,7 @@ class ServerControl(object): result = read_process(APACHE_PATH, "-k start -f %s" % mpconf) if result: - print result + cherrypy.py3print(result) def stop(self): """Gracefully shutdown a server that is serving forever.""" |