Skip to content

Commit 4399dcb

Browse files
authored
Update signal_provider.py (#98)
This fixes a bug when loading mat files recorded with YarpLoggerDevice and then modified with a recent Matlab
1 parent 900952a commit 4399dcb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

robot_log_visualizer/file_reader/signal_provider.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ def __populate_text_logging_data(self, file_object):
7676
continue
7777
if key == "#refs#":
7878
continue
79+
if key == "#subsystem#":
80+
continue
7981
if "data" in value.keys():
8082
data[key] = {}
8183
level_ref = value["data"]["level"]
@@ -122,6 +124,8 @@ def __populate_numerical_data(self, file_object):
122124
continue
123125
if key == "#refs#":
124126
continue
127+
if key == "#subsystem#":
128+
continue
125129
if key == "log":
126130
continue
127131
if "data" in value.keys():

0 commit comments

Comments
 (0)