Skip to content

Commit

Permalink
Fixed typo in argument description
Browse files Browse the repository at this point in the history
  • Loading branch information
bbb651 committed Sep 17, 2021
1 parent f54929f commit a5a53bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion osume.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit a5a53bd

Please sign in to comment.