From aa24eea9b5f70e9d2551f7753df4d12d14231603 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Tue, 8 Jan 2019 18:15:11 -0800 Subject: Add missing closing parenthesis for otp set -a/--algorithm help The help text for the otp set -a/--algorithm option is lacking the closing parenthesis in the help text. This change adds it. --- nitrocli/src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nitrocli/src/args.rs b/nitrocli/src/args.rs index 8ce06e2..6e55cb1 100644 --- a/nitrocli/src/args.rs +++ b/nitrocli/src/args.rs @@ -483,7 +483,7 @@ pub fn otp_set(ctx: &mut ExecCtx<'_>, args: Vec) -> Result<()> { let _ = parser.refer(&mut algorithm).add_option( &["-a", "--algorithm"], argparse::Store, - "The OTP algorithm to use (hotp or totp, default: totp", + "The OTP algorithm to use (hotp or totp, default: totp)", ); let _ = parser.refer(&mut name).required().add_argument( "name", -- cgit v1.2.1