diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-06 08:36:11 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-06 08:36:11 -0400 |
commit | 779786dac366ab83161843a248a5c639af10e540 (patch) | |
tree | 3c0f2a6a4eb0e61fa26c6bfe24f36e6609f538e8 /tools/patman/patchstream.py | |
parent | 472fd5a35af3308f97de0376a6c25f5368035557 (diff) | |
parent | d4a1592a9908f4278f306ff9f11e63c010e05704 (diff) |
Merge tag 'dm-pull-6apr21' of https://source.denx.de/u-boot/custodians/u-boot-dm
ENOSYS clean-up
Minor dtoc improvements
Convert CONFIG_MISC_INIT_F to Kconfig
Allow unit tests to run on any board
pylibfdt build-rule fix
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index cdcd50a8499..a44cd861afc 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -133,8 +133,8 @@ class PatchStream: ValueError: Warning is generated with no commit associated """ if not self.commit: - raise ValueError('Warning outside commit: %s' % warn) - if warn not in self.commit.warn: + print('Warning outside commit: %s' % warn) + elif warn not in self.commit.warn: self.commit.warn.append(warn) def _add_to_series(self, line, name, value): |