Index: /trunk/psLib/src/types/psMetadataConfig.c
===================================================================
--- /trunk/psLib/src/types/psMetadataConfig.c	(revision 8778)
+++ /trunk/psLib/src/types/psMetadataConfig.c	(revision 8779)
@@ -10,6 +10,6 @@
 *  @author Eric Van Alst, MHPCC
 *
-*  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-09-08 03:42:24 $
+*  @version $Revision: 1.83 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-09-08 03:46:24 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -1303,5 +1303,5 @@
                    item->name, #type, item->data.type); \
     if (item->comment && strncmp(item->comment, "", 2)) { \
-        psStringAppend(&content, "  #%s", item->comment); \
+        psStringAppend(&content, "  # %s", item->comment); \
     } \
     psStringAppend(&content, "\n");
@@ -1310,5 +1310,5 @@
     switch (item->type) {
     case PS_DATA_METADATA_MULTI: {
-            if (item->comment) {
+            if (item->comment && strncmp(item->comment, "", 2)) {
                 psStringAppend(&content, "%s MULTI # %s\n", item->name, item->comment);
             } else {
@@ -1332,5 +1332,5 @@
                         item->name, "BOOL", item->data.B ? "T" : "F");
         if (item->comment && strncmp(item->comment, "", 2)) {
-            psStringAppend(&content, "  #%s", item->comment);
+            psStringAppend(&content, "  # %s", item->comment);
         }
         psStringAppend(&content, "\n");
@@ -1370,5 +1370,5 @@
                        item->name, "STR", item->data.str);
         if (item->comment && strncmp(item->comment,"",2)) {
-            psStringAppend(&content, "  #%s", item->comment);
+            psStringAppend(&content, "  # %s", item->comment);
         }
         psStringAppend(&content, " \n");
@@ -1387,5 +1387,5 @@
         }
         if ( strncmp(item->comment,"",2) ) {
-            psStringAppend(&content, "\nEND   #%s\n", item->comment);
+            psStringAppend(&content, "\nEND  # %s\n", item->comment);
         } else {
             psStringAppend(&content, "\nEND\n");
@@ -1415,7 +1415,7 @@
 
         if (item->comment && strncmp(item->comment,"",2)) {
-            psStringAppend(&content, "  #%s", item->comment);
-        }
-        psStringAppend(&content, " \n");
+            psStringAppend(&content, "  # %s", item->comment);
+        }
+        psStringAppend(&content, "\n");
         break;
     case PS_DATA_VECTOR:
@@ -1491,6 +1491,6 @@
             return NULL;
         }
-        if (item->comment && strncmp(item->comment,"",2)) {
-            psStringAppend(&content, "  #%s", item->comment);
+        if (item->comment && strncmp(item->comment, "", 2)) {
+            psStringAppend(&content, "  # %s", item->comment);
         }
         psStringAppend(&content, "\n");
