From 9e71842fbfa2ee7ef7ffd54fed5815c31ccdef2d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 13 Jun 2019 12:41:32 -0400 Subject: status: import print_function This module uses print() so make sure we import the print function. It doesn't really impact the current code due to the simple way it is calling print, but we should be sane to avoid future issues. Change-Id: I0b15344678c1dcb71207faa333c239b3fced1d62 --- subcmds/status.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'subcmds/status.py') diff --git a/subcmds/status.py b/subcmds/status.py index 3939c45b..63972d72 100644 --- a/subcmds/status.py +++ b/subcmds/status.py @@ -14,6 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function + from command import PagedCommand try: -- cgit v1.2.3-54-g00ecf