From 9671ecfe5a96b474c67f0a7a78583944f85d5003 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Thu, 15 Mar 2018 17:53:13 +0100 Subject: [PATCH] docs: Import print_function in reformat-news.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The script already works perfectly fine with Python 2, but that's more by chance than by design: we have a single occurrence of print(), and it just so happens that its only argument is an expression. Importing print_function makes the script more future, err, past proof. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrangé --- docs/reformat-news.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/reformat-news.py b/docs/reformat-news.py index 89f7ccb3dc..fe08bf6d91 100755 --- a/docs/reformat-news.py +++ b/docs/reformat-news.py @@ -21,6 +21,8 @@ # Authors: # Andrea Bolognani +from __future__ import print_function + import sys COLUMNS = 80 -- GitLab