[cig-commits] r4579 - mc/3D/CitcomS/trunk/module

tan2 at geodynamics.org tan2 at geodynamics.org
Thu Sep 21 10:49:19 PDT 2006


Author: tan2
Date: 2006-09-21 10:49:19 -0700 (Thu, 21 Sep 2006)
New Revision: 4579

Modified:
   mc/3D/CitcomS/trunk/module/setProperties.cc
Log:
Removed quotes from output string

Modified: mc/3D/CitcomS/trunk/module/setProperties.cc
===================================================================
--- mc/3D/CitcomS/trunk/module/setProperties.cc	2006-09-21 00:18:04 UTC (rev 4578)
+++ mc/3D/CitcomS/trunk/module/setProperties.cc	2006-09-21 17:49:19 UTC (rev 4579)
@@ -771,7 +771,7 @@
     }
 
     strcpy(value, PyString_AsString(prop));
-    *out << '"' << value << '"' << std::endl;
+    *out << value << std::endl;
 
     return;
 }



More information about the cig-commits mailing list