On 02/11/2023 14:59, Roi Dayan wrote:
> From: Eli Britstein <[email protected]>
> 
> Fixes tag quotes another commit that might fail in a spell check. Don't
> fail it.
> 
> Signed-off-by: Eli Britstein <[email protected]>
> Acked-by: Roi Dayan <[email protected]>
> ---
>  utilities/checkpatch.py | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py
> index a56f429d4c38..6b210fab8385 100755
> --- a/utilities/checkpatch.py
> +++ b/utilities/checkpatch.py
> @@ -409,6 +409,9 @@ def check_spelling(line, comment):
>      if not spell_check_dict or not spellcheck:
>          return False
>  
> +    if line.startswith('Fixes: '):
> +        return False
> +
>      words = filter_comments(line, True) if comment else line
>      words = words.replace(':', ' ').split(' ')
>  

Forgot to add a dot at the end of the title.
do you need me to send v2 or can be amended?

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to