diff options
Diffstat (limited to 'tools/patman')
| -rw-r--r-- | tools/patman/patchstream.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 5c2d3bc9b..4fda85221 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -31,7 +31,7 @@ from series import Series  # Tags that we detect and remove  re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' -    '|Reviewed-on:|Commit-Ready:') +    '|Reviewed-on:|Commit-\w*:')  # Lines which are allowed after a TEST= line  re_allowed_after_test = re.compile('^Signed-off-by:') |