Commit 617c564b by Martin Liska Committed by Martin Liska

Make mklog more robust.

2019-11-08  Martin Liska  <mliska@suse.cz>

	* mklog: The script fails for patches that contain:
	'---param=foo=bar xyz'.

From-SVN: r277952
parent 69a5dd57
2019-11-08 Martin Liska <mliska@suse.cz>
* mklog: The script fails for patches that contain:
'---param=foo=bar xyz'.
2019-09-18 Martin Liska <mliska@suse.cz>
* clang-format: Tweak configuration based on new
......
......@@ -178,8 +178,8 @@ class Hunk:
def is_file_diff_start(s):
# Don't be fooled by context diff line markers:
# *** 385,391 ****
return ((s.startswith('***') and not s.endswith('***'))
or (s.startswith('---') and not s.endswith('---')))
return ((s.startswith('*** ') and not s.endswith('***'))
or (s.startswith('--- ') and not s.endswith('---')))
def is_ctx_hunk_start(s):
return re.match(r'^\*\*\*\*\*\**', s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment