diff options
Diffstat (limited to 'bitbake/lib/bb/codeparser.py')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index 06409319e1..bfffcacc33 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py | |||
@@ -138,7 +138,7 @@ class PythonParser(): | |||
138 | except TypeError: | 138 | except TypeError: |
139 | logger.debug(2, 'Failed to convert function and argument to source form') | 139 | logger.debug(2, 'Failed to convert function and argument to source form') |
140 | else: | 140 | else: |
141 | logger.debug(1, "Warning: in call to '%s', argumen t'%s' is" | 141 | logger.debug(1, "Warning: in call to '%s', argument '%s' is " |
142 | "not a literal", funcstr, argstr) | 142 | "not a literal", funcstr, argstr) |
143 | 143 | ||
144 | def visit_Call(self, node): | 144 | def visit_Call(self, node): |
@@ -326,7 +326,7 @@ class ShellParser(): | |||
326 | 326 | ||
327 | cmd = word[1] | 327 | cmd = word[1] |
328 | if cmd.startswith("$"): | 328 | if cmd.startswith("$"): |
329 | logger.debug(1, "Warning: execution of non-literal" | 329 | logger.debug(1, "Warning: execution of non-literal " |
330 | "command '%s'", cmd) | 330 | "command '%s'", cmd) |
331 | elif cmd == "eval": | 331 | elif cmd == "eval": |
332 | command = " ".join(word for _, word in words[1:]) | 332 | command = " ".join(word for _, word in words[1:]) |