Salome HOME
limit the impact for users not having psutil
[tools/sat.git] / src / loggingSimple.py
index 617ba7e6e03725ba5f1c2dc6a3904d63bf30c23f..177b3426f2bf67dea058be8d2933518fc663c6dd 100755 (executable)
@@ -117,7 +117,8 @@ def getStrHandler(handler):
   h = handler  # shortcut
   msg = "%s(name=%s)"
   cName = h.__class__.__name__
-  res = msg % (cName, h.get_name())
+  # get_name absent in logging 0.5.0.5 python 2.6
+  res = msg % (cName, h._name)
   return res