From 9626b34c94d2d68b4ddd7754773fea42aba6fa66 Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Thu, 3 Aug 2023 23:09:09 -0500 Subject: [PATCH] Allow '/' in tag names --- pythonlib/games/ToolsTales.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonlib/games/ToolsTales.py b/pythonlib/games/ToolsTales.py index b7e708f..5f1e596 100644 --- a/pythonlib/games/ToolsTales.py +++ b/pythonlib/games/ToolsTales.py @@ -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, " ")