From e05d0e6f130e179d65933f1ebd3427a649827813 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 8 Jun 2016 14:10:21 +0200 Subject: [PATCH] libimagentrytag: Add value_name() call in ui helpers --- libimagentrytag/src/ui.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libimagentrytag/src/ui.rs b/libimagentrytag/src/ui.rs index 29cf8bc8..e74b1ac9 100644 --- a/libimagentrytag/src/ui.rs +++ b/libimagentrytag/src/ui.rs @@ -18,6 +18,7 @@ pub fn tag_add_arg<'a, 'b>() -> Arg<'a, 'b> { .short("a") .long("add") .takes_value(true) + .value_name("tags") .multiple(true) .help("Add tags, seperated by comma or by specifying multiple times") } @@ -27,6 +28,7 @@ pub fn tag_remove_arg<'a, 'b>() -> Arg<'a, 'b> { .short("r") .long("remove") .takes_value(true) + .value_name("tags") .multiple(true) .help("Remove tags, seperated by comma or by specifying multiple times") }