Salome HOME
SketchShapePlugin package is removed as not used.
[modules/shaper.git] / src / Config / Config_ModuleReader.cpp
index 71d16037846caf06c17a3cf3b40f7c0dda860790..2fd33f6cda947d90b50a1a065d6902ede4152340 100644 (file)
@@ -173,12 +173,12 @@ void Config_ModuleReader::loadPlugin(const std::string& thePluginName)
 
 void Config_ModuleReader::loadScript(const std::string& theFileName)
 {
-  /* aquire python thread */
+  /* acquire python thread */
   PyGILState_STATE gstate = PyGILState_Ensure();
 
   PyObject* module = PyImport_ImportModule(theFileName.c_str());
   if (!module) {
-    std::string anErrorMsg = "An error occured while importing " + theFileName;
+    std::string anErrorMsg = "An error occurred while importing " + theFileName;
     //Get detailed error message:
     if (PyErr_Occurred()) {
       PyObject *pstr, *ptype, *pvalue, *ptraceback;