From df47ded85939aac765b32f8e52fc5f6ea0e35394 Mon Sep 17 00:00:00 2001 From: chaow Date: Sun, 6 Nov 2022 12:01:56 -0800 Subject: [PATCH] =?UTF-8?q?Change=20=E6=B5=81=E5=87=BA=20tag=20to=20?= =?UTF-8?q?=E6=97=A0=E7=A0=81=E6=B5=81=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core.py b/core.py index 56783e1..96297d5 100644 --- a/core.py +++ b/core.py @@ -367,7 +367,7 @@ def print_files(path, leak_word, c_word, naming_rule, part, cn_sub, json_data, f if cn_sub == '1': print(" 中文字幕", file=code) if liuchu == '流出': - print(" 流出", file=code) + print(" 无码流出", file=code) if uncensored == 1: print(" 无码", file=code) if hack_word != '': @@ -381,7 +381,7 @@ def print_files(path, leak_word, c_word, naming_rule, part, cn_sub, json_data, f if cn_sub == '1': print(" 中文字幕", file=code) if liuchu == '流出': - print(" 流出", file=code) + print(" 无码流出", file=code) if uncensored == 1: print(" 无码", file=code) if hack_word != '': @@ -465,7 +465,7 @@ def add_mark(poster_path, thumb_path, cn_sub, leak, uncensored, hack) -> None: if cn_sub: mark_type += ',字幕' if leak: - mark_type += ',流出' + mark_type += ',无码流出' if uncensored: mark_type += ',无码' if hack: @@ -721,7 +721,7 @@ def core_main_no_net_op(movie_path, number): c_word = '-C' # 中文字幕影片后缀 uncensored = 1 if is_uncensored(number) else 0 if '流出' in movie_path or 'uncensored' in movie_path.lower(): - leak_word = '-流出' # 流出影片后缀 + leak_word = '-无码流出' # 无码流出影片后缀 leak = 1 if 'hack'.upper() in str(movie_path).upper() or '破解' in movie_path: @@ -806,7 +806,7 @@ def core_main(movie_path, number_th, oCC, specified_source=None, specified_url=N if '流出' in movie_path or 'uncensored' in movie_path.lower(): liuchu = '流出' leak = 1 - leak_word = '-流出' # 流出影片后缀 + leak_word = '-无码流出' # 流出影片后缀 else: leak = 0