]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ParametersPlugin/ParametersPlugin_PyInterp.cpp
Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_PyInterp.cpp
index 1d9851b834cbae5ed65090333c90c97a70a1b376..b15dc2ac7e74d744e9ef300a25fc7833100cb9c0 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 /*
  * ParametersPlugin_PyInterp.cpp
  *
@@ -81,7 +82,8 @@ std::list<std::string> ParametersPlugin_PyInterp::compile(const std::string& the
   }
 
   PyObject *aCodePyObj =
-      PyObject_CallMethod(aCodeopModule, (char*)"compile_command", (char*)"(s)", theExpression.c_str());
+    PyObject_CallMethod(aCodeopModule, (char*)"compile_command", (char*)"(s)", 
+                        theExpression.c_str());
 
   if(!aCodePyObj || aCodePyObj == Py_None || !PyCode_Check(aCodePyObj)) {
     Py_XDECREF(aCodePyObj);