diff options
author | Daniel Mueller <deso@posteo.net> | 2019-01-08 18:15:11 -0800 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-01-08 18:15:11 -0800 |
commit | aa24eea9b5f70e9d2551f7753df4d12d14231603 (patch) | |
tree | 2208735719ad0f885dcc4d1b3337866c5bf65f9e | |
parent | 350b3039ea0bc88c830bb3b4003af02b1000fd48 (diff) | |
download | nitrocli-aa24eea9b5f70e9d2551f7753df4d12d14231603.tar.gz nitrocli-aa24eea9b5f70e9d2551f7753df4d12d14231603.tar.bz2 |
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.
-rw-r--r-- | nitrocli/src/args.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<String>) -> 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", |