]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
0021672: [CEA 565] Dump Study from script
authoreap <eap@opencascade.com>
Wed, 20 Jun 2012 09:41:46 +0000 (09:41 +0000)
committereap <eap@opencascade.com>
Wed, 20 Jun 2012 09:41:46 +0000 (09:41 +0000)
  Avoid empty lines in the script due to appending to an empty command

src/GEOM/GEOM_PythonDump.cxx

index 97eae0cef2b1572d29be004019a6c4b24936be0d..70022fc99a2ede526112b565ad519371df5648c1 100644 (file)
@@ -44,8 +44,10 @@ namespace GEOM
   {
     if (--myCounter == 0) {
       TCollection_AsciiString aDescr;
-      if ( myAppend )
-        aDescr = myFunction->GetDescription() + "\n\t";
+      if ( myAppend ) {
+        aDescr = myFunction->GetDescription();
+        if ( !aDescr.IsEmpty() ) aDescr += "\n\t";
+      }
       std::string aString = myStream.str();
       aDescr += (char *)aString.c_str();
       myFunction->SetDescription( aDescr );