]> git.armaanb.net Git - phrases.git/commitdiff
Remove period from end of help messages
authorArmaan Bhojwani <me@armaanb.net>
Sun, 24 Jan 2021 18:30:37 +0000 (13:30 -0500)
committerArmaan Bhojwani <me@armaanb.net>
Sun, 24 Jan 2021 18:30:37 +0000 (13:30 -0500)
phrases.py

index e9875e16228eafc457ef1834ab578d2437498d7c..4ea6fe390a46056bd3d6f97839da11902d2b07c2 100755 (executable)
@@ -11,35 +11,35 @@ from os import path
 
 def parse_args():
     parser = argparse.ArgumentParser(
-        description="Latin famous phrases in the terminal.")
+        description="Latin famous phrases in the terminal")
     parser.add_argument("-i", "--id",
                         action='store_true',
-                        help="print the id of the phrase.")
+                        help="print the id of the phrase")
     parser.add_argument("-l", "--latin",
                         action='store_true',
                         help="print the Latin phrase (default)")
     parser.add_argument("-e", "--english",
                         action='store_true',
-                        help="print the English translation.")
+                        help="print the English translation")
     parser.add_argument("-n", "--notes",
                         action='store_true',
-                        help="print any notes on phrase.")
+                        help="print any notes on phrase")
     parser.add_argument("-v", "--version",
                         action='store_true',
-                        help="print version.")
+                        help="print version")
     parser.add_argument("-m", "--min",
                         default=0,
                         type=int,
-                        help="set the minimum length of the Latin phrase.")
+                        help="set the minimum length of the Latin phrase")
     parser.add_argument("-M", "--max",
                         default=10000000,
                         type=int,
-                        help="set the maximum length of Latin phrase.")
+                        help="set the maximum length of Latin phrase")
     parser.add_argument("-p", "--num",
                         action='store_true',
-                        help="print number of possible phrases.")
+                        help="print number of possible phrases")
     parser.add_argument("-f", "--file",
-                        help="set the location of the phrase database.")
+                        help="set the location of the phrase database")
     return parser.parse_args()