diff --git a/README.md b/README.md index 6a157bd..20bd35b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ python osume.py ### Arguments - `-d`, `--destination` - directory the songs are outputed to, defaults to `~/Music` -- `-a`, `--all` - extracts all songs of asking which ones to extract +- `-a`, `--all` - extracts all songs instead of asking which ones to extract ## Known Issues - All files are extracted not just songs diff --git a/osume.py b/osume.py index 204f4b3..951f850 100755 --- a/osume.py +++ b/osume.py @@ -14,7 +14,7 @@ def main(): parser = argparse.ArgumentParser() parser.add_argument("-d", "--destination", type=Path, help="directory the songs are outputed to, defualts to ~/Music") - parser.add_argument("-a", "--all", action="store_true", help="extracts all songs of asking which ones to extract") + parser.add_argument("-a", "--all", action="store_true", help="extracts all songs instead of asking which ones to extract") global args args = parser.parse_args()