From a5a53bd3608497a43124a3d10ebe11851c22137f Mon Sep 17 00:00:00 2001 From: bbb651 Date: Sat, 18 Sep 2021 00:07:59 +0300 Subject: [PATCH] Fixed typo in argument description --- README.md | 2 +- osume.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()