diff options
author | Mike Frysinger <vapier@google.com> | 2019-06-13 12:41:32 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2019-06-14 14:13:23 +0000 |
commit | 9e71842fbfa2ee7ef7ffd54fed5815c31ccdef2d (patch) | |
tree | 416f718100876cfb0ed471034eacc89d258f9676 | |
parent | 61b2d41f26ba5d31fd718b560125b23d4ccf5ede (diff) | |
download | git-repo-9e71842fbfa2ee7ef7ffd54fed5815c31ccdef2d.tar.gz |
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
-rw-r--r-- | subcmds/status.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 @@ | |||
14 | # See the License for the specific language governing permissions and | 14 | # See the License for the specific language governing permissions and |
15 | # limitations under the License. | 15 | # limitations under the License. |
16 | 16 | ||
17 | from __future__ import print_function | ||
18 | |||
17 | from command import PagedCommand | 19 | from command import PagedCommand |
18 | 20 | ||
19 | try: | 21 | try: |