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
This commit is contained in:
Martin Liska 2019-11-08 09:39:17 +01:00 committed by Martin Liska
parent 69a5dd5732
commit 617c564bf0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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)