Re: [PATCH v2 2/4] patman: Refactor MakeCcFile() into two functions

2023-03-01 Thread Doug Anderson
Hi, On Sun, Feb 19, 2023 at 3:50 PM Simon Glass wrote: > > @@ -234,6 +234,48 @@ class Series(dict): > str = 'Change log exists, but no version is set' > print(col.build(col.RED, str)) > > +def GetCcForCommit(self, commit, process_tags, warn_on_error, > +

[PATCH v2 2/4] patman: Refactor MakeCcFile() into two functions

2023-02-19 Thread Simon Glass
This function is quite long. Moving the handling of a commit into a separate function. This will make it easier to do the work in parallel. Update function comments while we are here. Signed-off-by: Simon Glass --- Changes in v2: - Fix missing 'f' on format string tools/patmanu/series.py | 80