removed dots from help messages to unify format

This commit is contained in:
Kjistóf 2017-02-07 01:17:24 +01:00
parent c90390d255
commit 010b141183

View File

@ -148,10 +148,10 @@ def determine_output_filename(url, user_supplied, extension, files_dict):
def parse_cmd_arguments(): def parse_cmd_arguments():
parser = ArgumentParser(description='Download player-looped videos with youtube-dl & ffmpeg.') parser = ArgumentParser(description='Download player-looped videos with youtube-dl & ffmpeg.')
parser.add_argument('-nv', '--nonverbose', action='store_true', help='Turn off non-critical messages to user.') parser.add_argument('-nv', '--nonverbose', action='store_true', help='Turn off non-critical messages to user')
parser.add_argument('-o', '--output', default=None, help='Specify name of the output file (use -e for extension).') parser.add_argument('-o', '--output', default=None, help='Specify name of the output file (use -e for extension)')
parser.add_argument('-e', '--extension', default='mp4', help='Set the container to use for the output.') parser.add_argument('-e', '--extension', default='mp4', help='Set the container to use for the output')
parser.add_argument('url', type=str, help='The URL of the site containing the video to download.') parser.add_argument('url', type=str, help='The URL of the site containing the video to download')
args = parser.parse_args() args = parser.parse_args()
args.extension = '.' + args.extension args.extension = '.' + args.extension