Исправление указания пути

This commit is contained in:
Lev 2022-12-12 16:20:49 +07:00
parent 0bf136e829
commit 2103d0b053
No known key found for this signature in database
GPG key ID: 21C6C2C9C0A4460D

View file

@ -343,7 +343,7 @@ if __name__ == '__main__':
if album.version is not None:
album.title = f'{album.title} ({track.album.version})'
save_path = prepare_track_path(args.path_pattern, args.strict_path, track)
save_path = args.dir / prepare_track_path(args.path_pattern, args.strict_path, track)
if args.skip_existing and save_path.is_file():
continue