python-zeep
python-zeep copied to clipboard
fix data type date parsing
it fixed my problem , thanks
I think only the import change is needed right?
I remove the line
if len(value) == 10:
value += "T00:00:00"
elif (len(value) == 19 or len(value) == 26) and value[10] == " ":
value = "T".join(value.split(" "))
too, that conflicted with the date parsing