diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-01-11 19:21:55 +0100 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-12 13:47:08 +0000 | 
| commit | c405a3a13eb961365adb788e710fa26513605543 (patch) | |
| tree | 8fa67821962dafb517507c8f9232060b59b6a1a7 | |
| parent | 3f08b7f1eadc8d181c76339d14c7abb4f49cad57 (diff) | |
| download | openembedded-core-c405a3a13eb961365adb788e710fa26513605543.tar.gz openembedded-core-c405a3a13eb961365adb788e710fa26513605543.tar.bz2 openembedded-core-c405a3a13eb961365adb788e710fa26513605543.zip | |
codeparser: fix spacing in diagnostic messages
(Bitbake rev: 8c5555f5ed6d61db57de80d2820c8cec64a27239)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -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():              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:]) | 
