From 51896514a7501cb52270499f76c190346965c15c Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 22 Apr 2013 14:55:51 +0100 Subject: [PATCH] Use print_function __future__ import Rather than continuing to use the old print statement, use the actual print function introduced in python 2.6. See: http://docs.python.org/2/whatsnew/2.6.html#pep-3105-print-as-a-function Change-Id: I059d982d60e13f13e1caf49509c0fe0b18eda723 --- tests/unit/test_processutils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/test_processutils.py b/tests/unit/test_processutils.py index f096cf7..a85ed48 100644 --- a/tests/unit/test_processutils.py +++ b/tests/unit/test_processutils.py @@ -15,6 +15,8 @@ # License for the specific language governing permissions and limitations # under the License. +from __future__ import print_function + from openstack.common import processutils from tests import utils