Fixed a forgotten character escape.

pull/48/head
s9roll7 2023-03-14 09:13:56 +09:00
parent fae34f7ec6
commit c134621255
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def create_movie_from_frames( dir, start, end, number_of_digits, fps, output_pat
def search_out_dirs(proj_dir, blend_rate):
### create out_dirs
p = re.compile(r'.*[\\/]out\-([0-9]+)[\\/]')
p = re.compile(r'.*[\\\/]out\-([0-9]+)[\\\/]')
number_of_digits = -1