Fix output normalize for deprecated args

This commit is contained in:
henryruhs 2023-06-19 10:30:03 +02:00
parent b5d3b058e2
commit 395133e744

View File

@ -74,6 +74,7 @@ def parse_args() -> None:
if args.source_path_deprecated:
print('\033[33mArgument -f and --face are deprecated. Use -s and --source instead.\033[0m')
roop.globals.source_path = args.source_path_deprecated
roop.globals.output_path = normalize_output_path(args.source_path_deprecated, roop.globals.target_path, args.output_path)
if args.cpu_cores_deprecated:
print('\033[33mArgument --cpu-cores is deprecated. Use --execution-threads instead.\033[0m')
roop.globals.execution_threads = args.cpu_cores_deprecated