summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Admin/Fingerprint.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Admin/Fingerprint.py')
-rw-r--r--src/lib/Server/Admin/Fingerprint.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/Server/Admin/Fingerprint.py b/src/lib/Server/Admin/Fingerprint.py
index aff8d42bf..39a180d51 100644
--- a/src/lib/Server/Admin/Fingerprint.py
+++ b/src/lib/Server/Admin/Fingerprint.py
@@ -5,11 +5,12 @@ import Bcfg2.Server.Admin
class Fingerprint(Bcfg2.Server.Admin.Mode):
'''Produce server key fingerprint'''
- __shorthelp__ = 'bcfg2-admin fingerprint'
- __longhelp__ = __shorthelp__ + '\n\tPrint the server certificate fingerprint'
+ __shorthelp__ = "Print the server certificate fingerprint"
+ __longhelp__ = __shorthelp__ + "\n\nbcfg2-admin fingerprint"
+ __usage__ = "bcfg2-admin fingerprint"
def __init__(self, cfile):
- Bcfg2.Server.Admin.Mode.__init__(self, cfile)
+ Bcfg2.Server.Admin.Mode.__init__(self, cfile)
def __call__(self, args):
Bcfg2.Server.Admin.Mode.__call__(self, args)