From 8ed2be22d400428e0a82ea875dca009bdd4722b5 Mon Sep 17 00:00:00 2001 From: Jose Alarcon Date: Mon, 28 Dec 2015 11:07:11 +0200 Subject: contrib: ensure that oe-stylize.py works with python versions < 3.0 Signed-off-by: Jose Alarcon Signed-off-by: Martin Jansa --- contrib/oe-stylize.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/oe-stylize.py b/contrib/oe-stylize.py index 712557d4f9..a2fcde1d4c 100755 --- a/contrib/oe-stylize.py +++ b/contrib/oe-stylize.py @@ -19,6 +19,7 @@ TODO: - count rule breaks and displays them in the order frequence """ +from __future__ import print_function import fileinput import string import re -- cgit 1.2.3-korg