From 07d23bf74b4279b313d8ea03ca9c15b330bdbf0b Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 22 Apr 2013 14:55:51 +0100 Subject: 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 --- openstack/common/rootwrap/cmd.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'openstack/common') diff --git a/openstack/common/rootwrap/cmd.py b/openstack/common/rootwrap/cmd.py index f17f50a..e8f4dd0 100755 --- a/openstack/common/rootwrap/cmd.py +++ b/openstack/common/rootwrap/cmd.py @@ -33,6 +33,8 @@ they are needed, to avoid allowing more than is necessary. """ +from __future__ import print_function + import ConfigParser import os import pwd -- cgit