ecebacc98890dd849cd57dca6cf136c0b4352c7c
galt
  Wed Feb 12 22:51:58 2020 -0800
fixing some metadata that we overlooked in cdwRenameDataset. fixed typo in help for cdwUnlockSubmittedFiles.

diff --git src/hg/cirm/cdw/cdwUnlockSubmittedFiles/cdwUnlockSubmittedFiles.c src/hg/cirm/cdw/cdwUnlockSubmittedFiles/cdwUnlockSubmittedFiles.c
index 602a81d..e367e9d 100644
--- src/hg/cirm/cdw/cdwUnlockSubmittedFiles/cdwUnlockSubmittedFiles.c
+++ src/hg/cirm/cdw/cdwUnlockSubmittedFiles/cdwUnlockSubmittedFiles.c
@@ -8,32 +8,32 @@
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "jksql.h"
 #include "cdw.h"
 #include "cdwLib.h"
 
 boolean really;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
-  "cdwUnlockSubmittedFiles - Unlock already submitted files from data warehouse.  n"
-  "This is just for cases where data is submitted already and changed into a symlink, "
+  "cdwUnlockSubmittedFiles - Unlock already submitted files from data warehouse.  \n"
+  "This is just for cases where data is submitted already and changed into a symlink, \n"
   "but now needs to be modified.\n"
   "usage:\n"
   "   cdwUnlockSubmittedFiles submitterEmail submitDir fileId1 fileId2 ... fileIdN\n"
   "where you can get submitterEmail by using cdwCheckDataset from the submission dir\n"
   "and submitDir includes a full path name, something like /data/cirm/wrangle/dirNamex.\n"
   "options:\n"
   "   -really - Needs to be set for anything to happen,  otherwise will just print file names.\n"
   );
 }
 
 /* Command line validation table. */
 static struct optionSpec options[] = {
    {"really", OPTION_BOOLEAN},
    {NULL, 0},
 };