Index: /trunk/psLib/src/types/psMetadataConfig.c
===================================================================
--- /trunk/psLib/src/types/psMetadataConfig.c	(revision 8297)
+++ /trunk/psLib/src/types/psMetadataConfig.c	(revision 8298)
@@ -10,6 +10,6 @@
 *  @author Eric Van Alst, MHPCC
 *
-*  @version $Revision: 1.70 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-08-08 23:32:23 $
+*  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-08-12 02:53:36 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -1279,7 +1279,7 @@
     psStringAppend(&content, "  " #dataformat, item->data.type); \
     if ( strncmp(item->comment,"",2) ) { \
-        psStringAppend(&content, " #%s", item->comment); \
+        psStringAppend(&content, " #%s\n", item->comment); \
     } \
-    psStringAppend(&content, " \n");
+    psStringAppend(&content, "\n");
 
     // In this block, the single item is used to build 'content'
@@ -1305,14 +1305,10 @@
         break;
     case PS_DATA_BOOL:
-        psStringAppend (&content, "%s BOOL  ", item->name);
-        if ( item->data.B ) {
-            psStringAppend(&content, "TRUE");
-        } else {
-            psStringAppend(&content, "FALSE");
-        }
-        if ( item->comment != NULL ) {
-            psStringAppend(&content, " #%s", item->comment);
-        }
-        psStringAppend(&content, " \n", item->comment);
+        psStringAppend (&content, "%-15s  %-8s", item->name, "BOOL");
+        psStringAppend(&content, "  %s", item->data.B ? "T" : "F");
+        if (strncmp(item->comment,"",2) ) {
+            psStringAppend(&content, " #%s\n", item->comment);
+        }
+        psStringAppend(&content, "\n");
         break;
     case PS_DATA_S8:
