Loading src/Python/LogParser.py +3 −1 Original line number Diff line number Diff line Loading @@ -28,6 +28,8 @@ class TableColumn: self.rowspan = 0 self.level = level # splitting with spaces around ':' is necessary, because the label can contain ':' too # (e.g. C++ types like Matrices::CSR) dataSplit = data.split( ' : ', 1 ) self.label = dataSplit[ 0 ].strip() if len(dataSplit) == 2: Loading Loading
src/Python/LogParser.py +3 −1 Original line number Diff line number Diff line Loading @@ -28,6 +28,8 @@ class TableColumn: self.rowspan = 0 self.level = level # splitting with spaces around ':' is necessary, because the label can contain ':' too # (e.g. C++ types like Matrices::CSR) dataSplit = data.split( ' : ', 1 ) self.label = dataSplit[ 0 ].strip() if len(dataSplit) == 2: Loading