mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-22 06:13:25 -07:00
Update markupsafe==2.1.2
This commit is contained in:
parent
8201c78a8c
commit
e0ffbf2d8d
1 changed files with 3 additions and 3 deletions
|
@ -11,10 +11,10 @@ if t.TYPE_CHECKING:
|
|||
pass
|
||||
|
||||
|
||||
__version__ = "2.1.1"
|
||||
__version__ = "2.1.2"
|
||||
|
||||
_strip_comments_re = re.compile(r"<!--.*?-->")
|
||||
_strip_tags_re = re.compile(r"<.*?>")
|
||||
_strip_comments_re = re.compile(r"<!--.*?-->", re.DOTALL)
|
||||
_strip_tags_re = re.compile(r"<.*?>", re.DOTALL)
|
||||
|
||||
|
||||
def _simple_escaping_wrapper(name: str) -> t.Callable[..., "Markup"]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue