Commit 71ceb5b3 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

LogParser: fixed parsing of labels attributes

parent 4a3d9c64
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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: