Skip to content

Commit e5c393e

Browse files
committed
waiting for a cleaner fix (ernw#15)
1 parent 9998df3 commit e5c393e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wcf/xml2records.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ def _parse_data(self, data, is_cdata=False):
137137
return Bytes16TextRecord(data)
138138
elif val < 2**32:
139139
return Bytes32TextRecord(data)
140-
elif float_reg.match(data):
141-
return DoubleTextRecord(float(data))
140+
#elif float_reg.match(data):
141+
# return DoubleTextRecord(float(data))
142142
elif data in inverted_dict:
143143
return DictionaryTextRecord(inverted_dict[data])
144144
elif datetime_reg.match(data) and False: # TODO

0 commit comments

Comments
 (0)