summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/otptoken.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2014-06-09 20:10:19 +0200
committerMartin Kosek <mkosek@redhat.com>2014-06-10 13:19:32 +0200
commite3b20b9d03f08b889474ef94aef11b31723fdf53 (patch)
tree20c9d187043c8f03eff55e86e1e563ee903d72f3 /ipalib/plugins/otptoken.py
parentb0a61ab9530d96a56ff0b10e66a742c18ca90c4a (diff)
downloadfreeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.tar.gz
freeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.tar.xz
freeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.zip
Split long docstrings that were recently modified
When the strings are changed again, translators will only need to re-translate the modified parts. See: https://fedorahosted.org/freeipa/ticket/3587 Reviewed-By: Martin Kosek <mkosek@redhat.com>
Diffstat (limited to 'ipalib/plugins/otptoken.py')
-rw-r--r--ipalib/plugins/otptoken.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py
index b264287c3..17644e0f1 100644
--- a/ipalib/plugins/otptoken.py
+++ b/ipalib/plugins/otptoken.py
@@ -30,23 +30,23 @@ import qrcode
__doc__ = _("""
OTP Tokens
-
+""") + _("""
Manage OTP tokens.
-
+""") + _("""
IPA supports the use of OTP tokens for multi-factor authentication. This
code enables the management of OTP tokens.
-
+""") + _("""
EXAMPLES:
-
+""") + _("""
Add a new token:
ipa otptoken-add --type=totp --owner=jdoe --desc="My soft token"
-
+""") + _("""
Examine the token:
ipa otptoken-show a93db710-a31a-4639-8647-f15b2c70b78a
-
+""") + _("""
Change the vendor:
ipa otptoken-mod a93db710-a31a-4639-8647-f15b2c70b78a --vendor="Red Hat"
-
+""") + _("""
Delete a token:
ipa otptoken-del a93db710-a31a-4639-8647-f15b2c70b78a
""")