From 3a8a46bfd0b990a70413a31ecdb025300efbe858 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Wed, 3 Jan 2018 11:03:53 -0500 Subject: [PATCH] lib arg description default is actually blank and not all libraries. --- utility/plex_api_share.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utility/plex_api_share.py b/utility/plex_api_share.py index 9554b84..cb3eb1c 100644 --- a/utility/plex_api_share.py +++ b/utility/plex_api_share.py @@ -10,7 +10,6 @@ optional arguments: -l [ ...], --libraries [ ...] Space separated list of case sensitive names to process. Allowed names are: (choices: All library names) - (default: All Libraries) Usage: @@ -63,7 +62,7 @@ if __name__ == "__main__": '(choices: %(choices)s)') parser.add_argument('-l', '--libraries', nargs='+', default='', choices=sections_lst, metavar='', help='Space separated list of case sensitive names to process. Allowed names are: \n' - '(choices: %(choices)s \n(default: All Libraries)') + '(choices: %(choices)s') opts = parser.parse_args()