]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
cli.py: make command descriptions consistently end with a full stop.
authordavid-sarah <david-sarah@jacaranda.org>
Wed, 14 Jul 2010 01:45:38 +0000 (18:45 -0700)
committerdavid-sarah <david-sarah@jacaranda.org>
Wed, 14 Jul 2010 01:45:38 +0000 (18:45 -0700)
src/allmydata/scripts/cli.py

index afef264b195f79f51b5fa4ec3377ff19f47192fa..446c6b5ad351c50636ebe7b7c458fad0449998ca 100644 (file)
@@ -420,11 +420,11 @@ class DeepCheckOptions(VDriveOptions):
     Optionally repair any problems found."""
 
 subCommands = [
-    ["mkdir", None, MakeDirectoryOptions, "Create a new directory"],
-    ["add-alias", None, AddAliasOptions, "Add a new alias cap"],
-    ["create-alias", None, CreateAliasOptions, "Create a new alias cap"],
-    ["list-aliases", None, ListAliasOptions, "List all alias caps"],
-    ["ls", None, ListOptions, "List a directory"],
+    ["mkdir", None, MakeDirectoryOptions, "Create a new directory."],
+    ["add-alias", None, AddAliasOptions, "Add a new alias cap."],
+    ["create-alias", None, CreateAliasOptions, "Create a new alias cap."],
+    ["list-aliases", None, ListAliasOptions, "List all alias caps."],
+    ["ls", None, ListOptions, "List a directory."],
     ["get", None, GetOptions, "Retrieve a file from the grid."],
     ["put", None, PutOptions, "Upload a file into the grid."],
     ["cp", None, CpOptions, "Copy one or more files."],
@@ -433,10 +433,10 @@ subCommands = [
     ["ln", None, LnOptions, "Make an additional link to an existing file."],
     ["backup", None, BackupOptions, "Make target dir look like local dir."],
     ["webopen", None, WebopenOptions, "Open a web browser to a grid file or directory."],
-    ["manifest", None, ManifestOptions, "List all files/directories in a subtree"],
-    ["stats", None, StatsOptions, "Print statistics about all files/directories in a subtree"],
-    ["check", None, CheckOptions, "Check a single file or directory"],
-    ["deep-check", None, DeepCheckOptions, "Check all files/directories reachable from a starting point"],
+    ["manifest", None, ManifestOptions, "List all files/directories in a subtree."],
+    ["stats", None, StatsOptions, "Print statistics about all files/directories in a subtree."],
+    ["check", None, CheckOptions, "Check a single file or directory."],
+    ["deep-check", None, DeepCheckOptions, "Check all files/directories reachable from a starting point."],
     ]
 
 def mkdir(options):