[libvirt] [PATCH 1/2] docs: Import print_function in reformat-news.py

Andrea Bolognani abologna at redhat.com
Thu Mar 15 17:00:37 UTC 2018


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 <abologna at redhat.com>
---
 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 <abologna at redhat.com>
 
+from __future__ import print_function
+
 import sys
 
 COLUMNS = 80
-- 
2.14.3




More information about the libvir-list mailing list