diff options
author | Tom Rini <trini@konsulko.com> | 2021-03-03 22:53:53 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-03 22:53:53 -0500 |
commit | 2b82b1d26ae44ac2f43d8a87f482fe906ba863fb (patch) | |
tree | 34016a954bbcba79b78713790480b5072828d29b /tools/patman/series.py | |
parent | 52ba373b7825e9feab8357065155cf43dfe2f4ff (diff) | |
parent | 384b62c073f3aaccba0c917a8da7701a82441aec (diff) |
Merge tag 'dm-pull-3mar21' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
dm: Fix an obscure bug with empty of-platdata
Fixes for ns16550 base address and frequency-reading
Other minor fixes
Diffstat (limited to 'tools/patman/series.py')
-rw-r--r-- | tools/patman/series.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/series.py b/tools/patman/series.py index a6746e87c43..41a11732fcd 100644 --- a/tools/patman/series.py +++ b/tools/patman/series.py @@ -271,7 +271,7 @@ class Series(dict): cc += get_maintainer.GetMaintainer(dir_list, commit.patch) for x in set(cc) & set(settings.bounces): print(col.Color(col.YELLOW, 'Skipping "%s"' % x)) - cc = set(cc) - set(settings.bounces) + cc = list(set(cc) - set(settings.bounces)) if limit is not None: cc = cc[:limit] all_ccs += cc |