Fix: fix output path restriction, allow to . and / (which prevent use of sub directory)

master
bbc_mc 2023-01-19 21:00:00 +09:00
parent 756b9b536a
commit 7e826a132d
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class MergeRecipe():
self.A = self.row_A
self.B = self.row_B
self.C = self.row_C
self.O = re.sub(r'[\\|/|:|?|.|"|<|>|\|\*]', '-', O)
self.O = re.sub(r'[\\|:|?|"|<|>|\|\*]', '-', O)
self.S = self._adjust_method(method=S, model_C=C)
self.M = self._adjust_multi_by_method(method=S, multi=M)
self.F = self.row_F