Skip to content

Commit

Permalink
Merge pull request mvdctop#385 from ddtyjmyjm/ben_dev
Browse files Browse the repository at this point in the history
fix program crash and wrong folder created
  • Loading branch information
Yoshiko2 authored Dec 28, 2020
2 parents 4c31eee + 62d1f37 commit dc1e3ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def moveFailedFolder(filepath, failed_folder):
root_path = str(pathlib.Path(filepath).parent)
file_name = pathlib.Path(filepath).name
destination_path = root_path + '/' + failed_folder + '/'
if config.Config.soft_link():
if config.Config().soft_link():
print('[-]Create symlink to Failed output folder')
os.symlink(filepath, destination_path + '/' + file_name)
else:
Expand Down Expand Up @@ -522,7 +522,7 @@ def core_main(file_path, number_th, conf: config.Config):


filepath = file_path # 影片的路径 绝对路径
rootpath = str(pathlib.Path(filepath).parent)
rootpath = os.getcwd() #程序根路径
number = number_th
json_data = get_data_from_json(number, filepath, conf) # 定义番号

Expand Down

0 comments on commit dc1e3ed

Please sign in to comment.