Allow '/' in tag names

This commit is contained in:
Mc-muffin
2023-08-03 23:09:09 -05:00
parent d6909349df
commit 9626b34c94

View File

@@ -24,7 +24,7 @@ from pythonlib.formats.pak import Pak
class ToolsTales:
COMMON_TAG = r"(<\w+:?\w+>)"
COMMON_TAG = r"(<[\w/]+:?\w+>)"
HEX_TAG = r"(\{[0-9A-F]{2}\})"
PRINTABLE_CHARS = "".join(
(string.digits, string.ascii_letters, string.punctuation, " ")