Removed premature decoding of iXML bytes

This commit is contained in:
Jamie Hardt
2019-01-02 00:17:20 -08:00
parent 9f943aeb61
commit 3e897d030c
2 changed files with 6 additions and 4 deletions

View File

@@ -118,7 +118,7 @@ class WavInfoReader():
if ixml_data is None:
return None
ixml_string = ixml_data.decode('utf-8')
ixml_string = ixml_data
return WavIXMLFormat(ixml_string)