4f30cbd46d2beb5700bcb43f08ff00eb950876b0
hiram
  Fri Apr 5 14:43:16 2019 -0700
test checking

diff --git src/hg/hubApi/list.c src/hg/hubApi/list.c
index 6ead98c..2dde1eb 100644
--- src/hg/hubApi/list.c
+++ src/hg/hubApi/list.c
@@ -1,17 +1,19 @@
 /* manage endpoint /list/ functions */
 
+/* test */
+
 #include "dataApi.h"
 
 static void hubPublicJsonData(struct jsonWrite *jw, struct hubPublic *el,
   int columnCount, char **columnNames)
 /* Print array data for one row from hubPublic table, order here
  * must be same as was stated in the columnName header element
  * This code should be in hg/lib/hubPublic.c (which does not exist)
  */
 {
 int i = 0;
 jsonWriteObjectStart(jw, NULL);
 jsonWriteString(jw, columnNames[i++], el->hubUrl);
 jsonWriteString(jw, columnNames[i++], el->shortLabel);
 jsonWriteString(jw, columnNames[i++], el->longLabel);
 jsonWriteString(jw, columnNames[i++], el->registrationTime);