diff --git a/pym/cl_string.py b/pym/cl_string.py index 875dccd..3708688 100644 --- a/pym/cl_string.py +++ b/pym/cl_string.py @@ -319,7 +319,8 @@ class tableReport: def printReport(self,printRows=True): """Напечатать данные в табличном виде""" - cl_overriding.printSUCCESS(self.title) + if self.title: + cl_overriding.printSUCCESS(self.title) listStrSep = [] for lenCol in self.columnsWidth: listStrSep.append("-"*lenCol)