Skip to content

Commit

Permalink
Fixed batch processing mode selection
Browse files Browse the repository at this point in the history
  • Loading branch information
arkrow committed Apr 9, 2020
1 parent ce59005 commit 541e4b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ This project started out as a fork of [Nolan Nicholson](https://github.com/Nolan

## Version History

- v1.3.1 Fixed batch processing mode selection
- v1.3.0 Added multiprocessing support and progress bar for batch export
- v1.2.1 Save export output to a "looper_output" folder in the current working directory by default
- v1.2.0 Removed unreliable cache implementation
Expand Down
2 changes: 1 addition & 1 deletion pymusiclooper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def export_handler(file_path):
logging.info("")

if args.batch:
if not args.export or not args.json:
if not args.export and not args.json:
raise parser.error("Export mode not specified. -e or -j required.")

if args.n_jobs < -1 or args.n_jobs == 0:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def get_requirements():

setuptools.setup(
name="pymusiclooper",
version="1.3.0",
version="1.3.1",
author="arkrow",
author_email="[email protected]",
description="Automatically find loop points of any song and play endlessly or export into intro/loop/outro sections or loop points.",
Expand Down

0 comments on commit 541e4b6

Please sign in to comment.