summaryrefslogtreecommitdiff
path: root/jamos
diff options
context:
space:
mode:
Diffstat (limited to 'jamos')
-rwxr-xr-xjamos9
1 files changed, 5 insertions, 4 deletions
diff --git a/jamos b/jamos
index a7d8051..15a3200 100755
--- a/jamos
+++ b/jamos
@@ -47,17 +47,18 @@ def get_command_line_options():
parser = argparse.ArgumentParser(
description="Download songs from YouTube Music")
parser.add_argument("url",
- metavar="string",
+ metavar="url",
type=str,
- help="Playlist or Song URL to download")
+ help="Playlist or Song URL to download.",
+ )
parser.add_argument("-c",
"--cookies",
- metavar="string",
+ metavar="cookiefile.txt",
type=str,
help="Cookie file to use.")
parser.add_argument("-o",
"--output",
- metavar="string",
+ metavar="output_directory",
type=str,
help="Output directory to use")