summaryrefslogtreecommitdiff
path: root/python/samba
diff options
context:
space:
mode:
authorBjörn Baumbach <bb@sernet.de>2019-03-28 17:24:40 +0100
committerDouglas Bagnall <dbagnall@samba.org>2019-03-30 22:21:27 +0000
commit53afa138bbef7a4a2eb9e2b6d183aadde94c132b (patch)
tree63b8182043fa1d8b972fb7b237ce458f69054148 /python/samba
parented0060d3f2f86837efd5afee6e0b68884765c3c3 (diff)
downloadsamba-53afa138bbef7a4a2eb9e2b6d183aadde94c132b.tar.gz
samba-tool: fix some typos
All command descriptions have a dot '.' at the end. The ou and visualize command need this too. ... group - Group management. ldapcmp - Compare two ldap databases. ntacl - NT ACLs manipulation. ou - Organizational Units (OU) management ... user - User management. visualize - Produces graphical representations of Samba network state Signed-off-by: Björn Baumbach <bb@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'python/samba')
-rw-r--r--python/samba/netcmd/ou.py6
-rw-r--r--python/samba/netcmd/visualize.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/python/samba/netcmd/ou.py b/python/samba/netcmd/ou.py
index f4e01838e6e..38be3cea22e 100644
--- a/python/samba/netcmd/ou.py
+++ b/python/samba/netcmd/ou.py
@@ -1,6 +1,6 @@
-# implement samba_tool ou commands
+# implement samba-tool ou commands
#
-# Copyright Bjoern Baumbach <bb@sernet.de> 2018
+# Copyright Bjoern Baumbach 2018-2019 <bb@samba.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -390,7 +390,7 @@ class cmd_delete(Command):
class cmd_ou(SuperCommand):
- """Organizational Units (OU) management"""
+ """Organizational Units (OU) management."""
subcommands = {}
subcommands["create"] = cmd_create()
diff --git a/python/samba/netcmd/visualize.py b/python/samba/netcmd/visualize.py
index a0eb676eb31..3b99c6c6e02 100644
--- a/python/samba/netcmd/visualize.py
+++ b/python/samba/netcmd/visualize.py
@@ -705,7 +705,7 @@ class cmd_uptodateness(GraphCommand):
class cmd_visualize(SuperCommand):
- """Produces graphical representations of Samba network state"""
+ """Produces graphical representations of Samba network state."""
subcommands = {}
for k, v in globals().items():