mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
mod_translation_updater.py: fix @n being incorrectly rejected
This commit is contained in:
parent
1b89d4d541
commit
b7887a339d
@ -154,7 +154,7 @@ pattern_tr_filename = re.compile(r'\.tr$')
|
|||||||
pattern_bad_luastring = re.compile(
|
pattern_bad_luastring = re.compile(
|
||||||
r'^@$|' # single @, OR
|
r'^@$|' # single @, OR
|
||||||
r'[^@]@$|' # trailing unescaped @, OR
|
r'[^@]@$|' # trailing unescaped @, OR
|
||||||
r'(?<!@)@(?=[^@1-9])' # an @ that is not escaped or part of a placeholder
|
r'(?<!@)@(?=[^@1-9n])' # an @ that is not escaped or part of a placeholder
|
||||||
)
|
)
|
||||||
|
|
||||||
# Attempt to read the mod's name from the mod.conf file or folder name. Returns None on failure
|
# Attempt to read the mod's name from the mod.conf file or folder name. Returns None on failure
|
||||||
|
Loading…
Reference in New Issue
Block a user