558157a5068cd07e44e84538fb706184324633a4
lrnassar
  Tue Aug 31 12:12:08 2021 -0700
Improving formatting of help statement refs #28008

diff --git src/utils/qa/hubPublicAutoUpdate src/utils/qa/hubPublicAutoUpdate
index 86ec395..8cf9f72 100755
--- src/utils/qa/hubPublicAutoUpdate
+++ src/utils/qa/hubPublicAutoUpdate
@@ -24,31 +24,31 @@
                                      formatter_class=argparse.RawDescriptionHelpFormatter)
     optional = parser._action_groups.pop()
     
     required = parser.add_argument_group('required arguments')
     
     required.add_argument ("server",
         help = "Server from which to query the hubPublic table. Can be dev, hgwbeta, or rr.")
     optional.add_argument ("-t", "--test", dest = "testMode", default = False, action = "store_true",
         help = "Optional: Run in test mode. Print out any discrepancies but do not run any " + \
             "commands.")
     if (len(sys.argv) == 1):
         parser.print_usage()
         print("\nGiven a server (dev/hgwbeta/rr) will query hubPublic table URLs and verify that\n" + \
               "the shortLabel, longLabel, dbCount and dbList matches what is in the hubPublic table.\n" + \
               "Any inconsistencies will be automatically updated. Will print out the commands as\n" + \
-              "well as run them\n" + \
+              "well as run them.\n\n" + \
               "Can optionally be run in test mode where it will only print commands without executing.\n\n" + \
               "Example run:\n" + \
               "    hubPublicAutoUpdate dev\n" + \
               "    hubPublicAutoUpdate hgwbeta -t\n" + \
               "    hubPublicAutoUpdate rr\n")
         exit(0)
     parser._action_groups.append(optional)
     options = parser.parse_args()
     return  options
 
 def evaluateServer(serverToQuery):
     """Evaluate the input server, ensure it is valid and return corresponding hgsqlInputs"""
     if serverToQuery == 'dev':
         hgsqlInput = ['','hgcentraltest']
     elif serverToQuery == 'hgwbeta':