# HG changeset patch # User Mads Kiilerich # Date 2019-11-13 11:28:19 # Node ID 19735bc604550095ea4430a50be67e5df6e2e2df # Parent e505395c3a03561301eb619dd2cad9e1bb0baae0 i18n: also strip '# #, fuzzy' from header comment - it might appear when verifying branches are in sync diff --git a/scripts/i18n_utils.py b/scripts/i18n_utils.py --- a/scripts/i18n_utils.py +++ b/scripts/i18n_utils.py @@ -41,6 +41,9 @@ header_comment_strip_re = re.compile(r'' ^ (?:[#] \n)? [#],[ ]fuzzy \n + | + ^ + [#][ ][#],[ ]fuzzy \n ''', re.MULTILINE|re.VERBOSE)