From 0330c71f594bebf17d14113929ee1353717dba6f Mon Sep 17 00:00:00 2001 From: Jose Alarcon Date: Mon, 28 Dec 2015 11:07:13 +0200 Subject: contrib: print oldline within single quotes Signed-off-by: Jose Alarcon Signed-off-by: Martin Jansa --- contrib/oe-stylize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib') diff --git a/contrib/oe-stylize.py b/contrib/oe-stylize.py index 7bb310d671..db8a3632d9 100755 --- a/contrib/oe-stylize.py +++ b/contrib/oe-stylize.py @@ -311,10 +311,10 @@ def follow_rule(i, line): # if the line still does not respect the rule if not rules[i][0](line): # this is a rule disgression - print ("## Disgression: ", rules[i][2], " in:", oldline) + print ("## Disgression: ", rules[i][2], " in: '", oldline, "'") else: # just remind user about his/her errors - print ("## Reminder: ", rules[i][2], " in :", oldline) + print ("## Reminder: ", rules[i][2], " in : '", oldline, "'") return line -- cgit 1.2.3-korg