2019-11-08 Martin Liska <mliska@suse.cz>
* mklog: The script fails for patches that contain:
'---param=foo=bar xyz'.
From-SVN: r277952
+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
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)