From 1dceff456d30961acaf0833369fd777b1dd194a7 Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Sun, 15 Dec 2024 20:16:18 -0500 Subject: [PATCH] cxb: added missing r which fixes an issue on ubuntu 24.04.1 --- titles/cxb/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titles/cxb/index.py b/titles/cxb/index.py index 513b813..a4e7085 100644 --- a/titles/cxb/index.py +++ b/titles/cxb/index.py @@ -155,7 +155,7 @@ class CxbServlet(BaseServlet): filename = filetype_split[len(filetype_split) - 1] match = re.match( - "^([A-Za-z]*)(\d\d\d\d)$", filetype_split[len(filetype_split) - 1] + r"^([A-Za-z]*)(\d\d\d\d)$", filetype_split[len(filetype_split) - 1] ) if match: func_to_find += f"{inflection.underscore(match.group(1))}xxxx"