aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-12-10 01:05:02 +0000
committerAndreas Oberritter <obi@opendreambox.org>2010-12-10 16:34:34 +0100
commitbbd15964c3af5e06c24aa040dc58ebeca2872d93 (patch)
treee6cd0ca0acfb6712b851a9682d5f0341cf8939dc /contrib
parent39530eb5979c2a9d9b0d994548fe44ca680efa44 (diff)
downloadopenembedded-bbd15964c3af5e06c24aa040dc58ebeca2872d93.tar.gz
oe-stylize: remove trailing newline when printing unknown variable/routinetested_2010-12-10
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/oe-stylize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/oe-stylize.py b/contrib/oe-stylize.py
index 0a1346c180..3c383bcfbb 100755
--- a/contrib/oe-stylize.py
+++ b/contrib/oe-stylize.py
@@ -379,7 +379,7 @@ if __name__ == "__main__":
line = follow_rule(5, line)
if var == "":
if not in_routine:
- print "## Warning: unknown variable/routine \"%s\"" % originalLine
+ print "## Warning: unknown variable/routine \"%s\"" % originalLine.rstrip('\n')
var = 'others'
for c in commentBloc: seen_vars[var].append(c)
commentBloc = []