Skip to content
Snippets Groups Projects
Commit ed922275 authored by Simon Glass's avatar Simon Glass
Browse files

patman: Don't allow spaces in tags


At present something like:

   Revert "arm: Add cache operations"

will try to use

   Revert "arm

as a tag. Clearly this is wrong, so fix it.

If the revert is intended to be tagged, then the tag can come before
the revert, perhaps. Alternatively the 'Cc' tag can be used in the commit
messages.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarDoug Anderson <dianders@chromium.org>
parent d29fe6e2
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
import re import re
# Separates a tag: at the beginning of the subject from the rest of it # Separates a tag: at the beginning of the subject from the rest of it
re_subject_tag = re.compile('([^:]*):\s*(.*)') re_subject_tag = re.compile('([^:\s]*):\s*(.*)')
class Commit: class Commit:
"""Holds information about a single commit/patch in the series. """Holds information about a single commit/patch in the series.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment