Skip to content

Commit

Permalink
waiting for a cleaner fix (ernw#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfonteneau committed Jan 27, 2023
1 parent 9998df3 commit e5c393e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wcf/xml2records.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def _parse_data(self, data, is_cdata=False):
return Bytes16TextRecord(data)
elif val < 2**32:
return Bytes32TextRecord(data)
elif float_reg.match(data):
return DoubleTextRecord(float(data))
#elif float_reg.match(data):
# return DoubleTextRecord(float(data))
elif data in inverted_dict:
return DictionaryTextRecord(inverted_dict[data])
elif datetime_reg.match(data) and False: # TODO
Expand Down

0 comments on commit e5c393e

Please sign in to comment.