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
This commit is contained in:
Mark McLoughlin 2013-04-22 14:55:51 +01:00
parent 57ca88bb6e
commit 51896514a7
1 changed files with 2 additions and 0 deletions

View File

@ -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