summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Admin.py')
-rw-r--r--src/lib/Bcfg2/Server/Admin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Admin.py b/src/lib/Bcfg2/Server/Admin.py
index 24cb46bd9..59059c240 100644
--- a/src/lib/Bcfg2/Server/Admin.py
+++ b/src/lib/Bcfg2/Server/Admin.py
@@ -59,7 +59,7 @@ class ccolors: # pylint: disable=C0103,W0232
def gen_password(length):
"""Generates a random alphanumeric password with length characters."""
- chars = string.letters + string.digits
+ chars = string.ascii_letters + string.digits
return "".join(random.choice(chars) for i in range(length))
@@ -1091,7 +1091,7 @@ class Viz(_ServerAdminCmd):
help="Show a key for different digraph shapes"),
Bcfg2.Options.Option(
"-c", "--only-client", metavar="<hostname>",
- help="Show only the groups, bundles for the named client"),
+ help="Only show groups and bundles for the named client"),
Bcfg2.Options.PathOption(
"-o", "--outfile",
help="Write viz output to an output file")]