Cleanup: use autopep8 for bl_i18n_utils.settings

Disable autopep8 for some regex blocks that use indentation
to signify regex grouping.
This commit is contained in:
Campbell Barton 2022-04-20 15:39:36 +10:00
parent 08dbd3bc7f
commit 8ed8fa80f4
1 changed files with 5 additions and 0 deletions

View File

@ -192,6 +192,8 @@ PYGETTEXT_CONTEXTS_DEFSRC = os.path.join("source", "blender", "blentranslation",
# XXX Not full-proof, but should be enough here!
PYGETTEXT_CONTEXTS = "#define\\s+(BLT_I18NCONTEXT_[A-Z_0-9]+)\\s+\"([^\"]*)\""
# autopep8: off
# Keywords' regex.
# XXX Most unfortunately, we can't use named backreferences inside character sets,
# which makes the regexes even more twisty... :/
@ -256,6 +258,9 @@ PYGETTEXT_KEYWORDS = (() +
for it in ("BLT_I18N_MSGID_MULTI_CTXT",))
)
# autopep8: on
# Check printf mismatches between msgid and msgstr.
CHECK_PRINTF_FORMAT = (
r"(?!<%)(?:%%)*%" # Beginning, with handling for crazy things like '%%%%%s'