From aba24882bf32c11b08a407f5daaec18e13279384 Mon Sep 17 00:00:00 2001 From: 68cdrBxM8YdoJ <68cdrBxM8YdoJ@gmail.com> Date: Sat, 18 Apr 2020 20:54:49 +0900 Subject: [PATCH] Remove part from title tag fixes #212 --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index fdba2ad..a65c515 100755 --- a/core.py +++ b/core.py @@ -257,7 +257,7 @@ def PrintFiles(path, c_word, naming_rule, part, cn_sub, json_data, filepath, fai with open(path + "/" + number + c_word + ".nfo", "wt", encoding='UTF-8') as code: print('', file=code) print("", file=code) - print(" " + naming_rule + part + "", file=code) + print(" " + naming_rule + "", file=code) print(" ", file=code) print(" ", file=code) print(" " + studio + "+", file=code)