diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 21:16:09 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 22:28:04 +0100 |
| commit | 9b913576eae75a9417c5613c8718e4294dc730f0 (patch) | |
| tree | 64f26ed439a6ff3fa3798a954a3f2232dd657279 /bitbake | |
| parent | c6c341a5552562ba927af15ab3c573b396d260dc (diff) | |
| download | poky-9b913576eae75a9417c5613c8718e4294dc730f0.tar.gz | |
bitbake: siggen: Add missing error message parameter
There is clearly a missing parameter from this error message, add it.
(Bitbake rev: d98be5ea69b99fb7934fc3093422f139bc37a1cc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/siggen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 8861337b92..dece945969 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
| @@ -24,7 +24,7 @@ def init(d): | |||
| 24 | break | 24 | break |
| 25 | else: | 25 | else: |
| 26 | logger.error("Invalid signature generator '%s', using default 'noop'\n" | 26 | logger.error("Invalid signature generator '%s', using default 'noop'\n" |
| 27 | "Available generators: %s", | 27 | "Available generators: %s", desired, |
| 28 | ', '.join(obj.name for obj in siggens)) | 28 | ', '.join(obj.name for obj in siggens)) |
| 29 | return SignatureGenerator(d) | 29 | return SignatureGenerator(d) |
| 30 | 30 | ||
