From 797974b09fdd078c8ad645c217a464b69ce72f66 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Fri, 2 May 2014 13:22:15 -0400 Subject: Fix a typo in the otptoken doc string https://fedorahosted.org/freeipa/ticket/4289 Reviewed-By: Jan Cholasta --- ipalib/plugins/otptoken.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py index 91525398d..f68ea7df5 100644 --- a/ipalib/plugins/otptoken.py +++ b/ipalib/plugins/otptoken.py @@ -39,16 +39,16 @@ code enables the management of OTP tokens. EXAMPLES: Add a new token: - ipa otp-add --type=totp --owner=jdoe --desc="My soft token" + ipa otptoken-add --type=totp --owner=jdoe --desc="My soft token" Examine the token: - ipa otp-show a93db710-a31a-4639-8647-f15b2c70b78a + ipa otptoken-show a93db710-a31a-4639-8647-f15b2c70b78a Change the vendor: - ipa otp-mod a93db710-a31a-4639-8647-f15b2c70b78a --vendor="Red Hat" + ipa otptoken-mod a93db710-a31a-4639-8647-f15b2c70b78a --vendor="Red Hat" Delete a token: - ipa otp-del a93db710-a31a-4639-8647-f15b2c70b78a + ipa otptoken-del a93db710-a31a-4639-8647-f15b2c70b78a """) register = Registry() -- cgit