From ab35683045a5b1b9e6689d0b0c2a56943895de7b Mon Sep 17 00:00:00 2001 From: el-gringo-alto <22480930+el-gringo-alto@users.noreply.github.com> Date: Tue, 26 Oct 2021 12:37:10 -0400 Subject: [PATCH] Amended help text --- zspotify/__main__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zspotify/__main__.py b/zspotify/__main__.py index 9832af86..875b7676 100644 --- a/zspotify/__main__.py +++ b/zspotify/__main__.py @@ -5,7 +5,8 @@ from app import client if __name__ == '__main__': - parser = argparse.ArgumentParser(prog='zspotify', description='A Spotify downloader needing only a python interpreter and ffmpeg.') + parser = argparse.ArgumentParser(prog='zspotify', + description='A Spotify downloader needing only a python interpreter and ffmpeg.') parser.add_argument('-ns', '--no-splash', action='store_true', help='Suppress the splash screen when loading.') @@ -14,7 +15,7 @@ if __name__ == '__main__': type=str, default='', nargs='?', - help='Downloads the track, album, playlist or podcast episode specified as a command line argument. If an artist url is given, all albums by specified artist will be downloaded.') + help='Downloads the track, album, playlist, podcast episode, or all albums by an artist from a url.') group.add_argument('-ls', '--liked-songs', dest='liked_songs', action='store_true',