samba-tool: fix some typos
authorBjörn Baumbach <bb@sernet.de>
Thu, 28 Mar 2019 16:24:40 +0000 (17:24 +0100)
committerDouglas Bagnall <dbagnall@samba.org>
Sat, 30 Mar 2019 22:21:27 +0000 (22:21 +0000)
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>
python/samba/netcmd/ou.py
python/samba/netcmd/visualize.py

index f4e01838e6e69f26312a5663b9ac20d329831631..38be3cea22e550df98a17aed31edd8cb2d45ef1d 100644 (file)
@@ -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()
index a0eb676eb31fc1a1894ab5a01cc37e3802bba580..3b99c6c6e028ef48eb19413e908d407c982ae7c2 100644 (file)
@@ -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():