diff options
author | Michael Dovgal <mdovgal@mirantis.com> | 2016-12-28 15:18:22 +0000 |
---|---|---|
committer | Mykhailo Dovgal <mdovgal@mirantis.com> | 2017-01-27 13:19:42 +0200 |
commit | 1e183dd1e19bf3d0d3acda10d0533cfb5320a94f (patch) | |
tree | d579735d8ed010c079ce3d6acbeb0ae556c09981 /cinderclient/shell_utils.py | |
parent | 7d140d0896fe54c4fc03fa501544da4e67d666c6 (diff) | |
download | python-cinderclient-1e183dd1e19bf3d0d3acda10d0533cfb5320a94f.tar.gz |
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
Diffstat (limited to 'cinderclient/shell_utils.py')
-rw-r--r-- | cinderclient/shell_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cinderclient/shell_utils.py b/cinderclient/shell_utils.py index 81e2155..e386558 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 |