From d4470a2015cd39df6e4c7b76bc5c800349be9f80 Mon Sep 17 00:00:00 2001 From: abuchanan920 Date: Tue, 5 Apr 2022 10:37:33 -0400 Subject: [PATCH] Use more idiomatic regular expression string Co-authored-by: Timmy Welch --- comicapi/filenameparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comicapi/filenameparser.py b/comicapi/filenameparser.py index f2250c5..c2fb459 100644 --- a/comicapi/filenameparser.py +++ b/comicapi/filenameparser.py @@ -89,7 +89,7 @@ class FileNameParser: # is the series name followed by issue filename = re.sub(r"--.*", self.repl, filename) - elif "__" in filename and not re.search('\\[__\\d+__\\]', filename): + elif "__" in filename and not re.search(r"\[__\d+__\]", filename): # the pattern seems to be that anything to left of the first "__" # is the series name followed by issue filename = re.sub(r"__.*", self.repl, filename)