diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-04 17:35:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-06 15:27:34 +0000 |
commit | 1ad3595e8c4aef541261f3a19ba0e85c106cff09 (patch) | |
tree | 6283b3d8fa298ca8c6e68c9aed84e900789b0d68 /bitbake/lib/bb/siggen.py | |
parent | 4ba49aca42232286f01c7546013007ecb33a68a6 (diff) | |
download | poky-1ad3595e8c4aef541261f3a19ba0e85c106cff09.tar.gz |
bitbake: siggen: Change exception note into a warning
This makes no sense as just a note, its at least a warning and useful
to get an idea of which codepath is failing.
(Bitbake rev: 0194cf0da24dc72dab0612cd54aa5190e6cd92f2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-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 0352e45231..c104c19f17 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -146,7 +146,7 @@ class SignatureGeneratorBasic(SignatureGenerator): | |||
146 | try: | 146 | try: |
147 | taskdeps = self._build_data(fn, d) | 147 | taskdeps = self._build_data(fn, d) |
148 | except: | 148 | except: |
149 | bb.note("Error during finalise of %s" % fn) | 149 | bb.warn("Error during finalise of %s" % fn) |
150 | raise | 150 | raise |
151 | 151 | ||
152 | #Slow but can be useful for debugging mismatched basehashes | 152 | #Slow but can be useful for debugging mismatched basehashes |