devtools/httptest.py
changeset 10589 7c23b7de2b8d
parent 10363 e1ebf3d12098
child 10603 65ad6980976e
--- a/devtools/httptest.py	Fri Sep 11 14:28:06 2015 +0200
+++ b/devtools/httptest.py	Fri Sep 11 14:52:09 2015 +0200
@@ -18,6 +18,8 @@
 """this module contains base classes and utilities for integration with running
 http server
 """
+from __future__ import print_function
+
 __docformat__ = "restructuredtext en"
 
 import random
@@ -178,5 +180,5 @@
             self.stop_server()
         except error.ReactorNotRunning as err:
             # Server could be launched manually
-            print err
+            print(err)
         super(CubicWebServerTC, self).tearDown()