Merge pull request #328 from matthiasbeyer/imag-link/fix-ui

Remove "show" argument, as the short key "s" was duplicated
This commit is contained in:
Matthias Beyer 2016-04-09 15:42:35 +02:00
commit 92b471bb13

View file

@ -80,12 +80,6 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.required(false) .required(false)
.help("List external link")) .help("List external link"))
.arg(Arg::with_name("show")
.long("show")
.short("s")
.takes_value(false)
.required(false)
.help("List external link (alias for --list)"))
) )
} }