From de01acabe57d6eaeb4bd2fe325ab83cd9c3891af Mon Sep 17 00:00:00 2001 From: xenofem Date: Wed, 7 Feb 2024 23:11:37 -0500 Subject: [PATCH] more textless regex --- dlibrary/dlibrary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlibrary/dlibrary.py b/dlibrary/dlibrary.py index a527114..785e626 100755 --- a/dlibrary/dlibrary.py +++ b/dlibrary/dlibrary.py @@ -26,7 +26,7 @@ DLSITE_ID_REGEX = re.compile('^[BR]J[0-9]+$') FANZA_ID_REGEX = re.compile('^d_[0-9]+$') FAKKU_ID_REGEX = re.compile('.*_FAKKU$') -TEXTLESS_REGEX = re.compile('(台詞|セリフ|テキスト|文字)(な|無)し|notext|textless') +TEXTLESS_REGEX = re.compile('(台詞|セリフ|テキスト|文字)((な|無)し|抜き)|notext|textless') EPILOGUE_REGEX = re.compile('after|後日談') HI_RES_REGEX = re.compile('高解像度') COVER_REGEX = re.compile('表紙')