From 1e183dd1e19bf3d0d3acda10d0533cfb5320a94f Mon Sep 17 00:00:00 2001 From: Michael Dovgal Date: Wed, 28 Dec 2016 15:18:22 +0000 Subject: [PATCH] Add print_function import As in PY2 and PY3 we have different result after calling print, add print_function import to have the same behaviour when using empty print. Change-Id: I59c644d196805bb8a2592fc84a839c7a75d78f1a --- cinderclient/shell_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cinderclient/shell_utils.py b/cinderclient/shell_utils.py index 81e21552e..e38655881 100644 --- a/cinderclient/shell_utils.py +++ b/cinderclient/shell_utils.py @@ -12,6 +12,8 @@ # License for the specific language governing permissions and limitations # under the License. +from __future__ import print_function + import sys import time