mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-22 12:10:10 +09:00
Output name of the program for --version
'The GNU standard --version option should direct the program to print information about its name, version' So added a name of program to version displaye along with shotr option \`-V'.
This commit is contained in:
parent
a452f9437c
commit
66992a3b7e
@ -118,7 +118,7 @@ def parseOpts(overrideArguments=None):
|
||||
fmt.format_option_strings = _format_option_string
|
||||
|
||||
kw = {
|
||||
'version': __version__,
|
||||
'version': 'youtube-dl '+__version__,
|
||||
'formatter': fmt,
|
||||
'usage': '%prog [OPTIONS] URL [URL...]',
|
||||
'conflict_handler': 'resolve',
|
||||
@ -132,7 +132,7 @@ def parseOpts(overrideArguments=None):
|
||||
action='help',
|
||||
help='Print this help text and exit')
|
||||
general.add_option(
|
||||
'--version',
|
||||
'-V', '--version',
|
||||
action='version',
|
||||
help='Print program version and exit')
|
||||
general.add_option(
|
||||
|
Loading…
Reference in New Issue
Block a user