diff options
author | The Hatsune Daishi <nao20010128@gmail.com> | 2020-02-29 18:33:09 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 16:33:09 +0700 |
commit | b76f0e58f750fd420ac3078c7183b2de66da562c (patch) | |
tree | 424e03639230b45f2503d1c95a1df68f4b8e86f6 /youtube_dl/options.py | |
parent | bee6451fe88dbe8d983150cb17565d1c3e9024f7 (diff) |
[options] Remove duplicate short option -v for --version (#24162)
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 1ffabc62b..8826b382c 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -134,7 +134,7 @@ def parseOpts(overrideArguments=None): action='help', help='Print this help text and exit') general.add_option( - '-v', '--version', + '--version', action='version', help='Print program version and exit') general.add_option( |