summaryrefslogtreecommitdiffstats
path: root/lib/bb/codeparser.py
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-01-11 19:21:55 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-01-11 19:21:55 +0100
commit8c5555f5ed6d61db57de80d2820c8cec64a27239 (patch)
tree92181127e2545e137f76ae7da453bf7fb7ed72d3 /lib/bb/codeparser.py
parentd3489b141cac1197324661680fe38b8a88bc49b4 (diff)
downloadbitbake-contrib-8c5555f5ed6d61db57de80d2820c8cec64a27239.tar.gz
codeparser: fix spacing in diagnostic messages
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'lib/bb/codeparser.py')
-rw-r--r--lib/bb/codeparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/codeparser.py b/lib/bb/codeparser.py
index 06409319e..bfffcacc3 100644
--- a/lib/bb/codeparser.py
+++ b/lib/bb/codeparser.py
@@ -138,7 +138,7 @@ class PythonParser():
except TypeError:
logger.debug(2, 'Failed to convert function and argument to source form')
else:
- logger.debug(1, "Warning: in call to '%s', argumen t'%s' is"
+ logger.debug(1, "Warning: in call to '%s', argument '%s' is "
"not a literal", funcstr, argstr)
def visit_Call(self, node):
@@ -326,7 +326,7 @@ class ShellParser():
cmd = word[1]
if cmd.startswith("$"):
- logger.debug(1, "Warning: execution of non-literal"
+ logger.debug(1, "Warning: execution of non-literal "
"command '%s'", cmd)
elif cmd == "eval":
command = " ".join(word for _, word in words[1:])