aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Alarcon <jose.alarcon@ge.com>2015-12-28 11:07:13 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2016-01-04 14:56:24 +0100
commit0330c71f594bebf17d14113929ee1353717dba6f (patch)
treeca3d1385a43868015752fff9f8a375d17053284a
parentb9db247aaca587f95574de76e94471864e887807 (diff)
downloadmeta-openembedded-contrib-0330c71f594bebf17d14113929ee1353717dba6f.tar.gz
contrib: print oldline within single quotes
Signed-off-by: Jose Alarcon <jose.alarcon@ge.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rwxr-xr-xcontrib/oe-stylize.py4
1 files changed, 2 insertions, 2 deletions
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