ratal / mdfreader

Read Measurement Data Format (MDF) versions 3.x and 4.x file formats in python
Other
169 stars 74 forks source link

Unable to parse CE blocks in MDF 3 files with ext. type=19 #141

Closed ginseil closed 6 years ago

ginseil commented 6 years ago

Hi,

line 638 in mdfinfo3.py: temp['name'] = temp['name'].rstrip(b'\x00').decode('latin1', 'replace') has to be replaced with: temp['message'] = temp['message'].rstrip(b'\x00').decode('latin1', 'replace')

ratal commented 6 years ago

Thanks, I never could confirm it !