python-zeep icon indicating copy to clipboard operation
python-zeep copied to clipboard

fix data type date parsing

Open frNNcs opened this issue 4 years ago • 3 comments

frNNcs avatar Jun 30 '21 17:06 frNNcs

it fixed my problem , thanks

leranp avatar Jul 22 '21 18:07 leranp

I think only the import change is needed right?

mvantellingen avatar Aug 03 '21 15:08 mvantellingen

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

frNNcs avatar Aug 03 '21 15:08 frNNcs