Azure/azure-storage-python

Include millisecond component (%f) in datetime serialization

gr-rob opened this issue · 0 comments

return value.strftime('%Y-%m-%dT%H:%M:%SZ')

Milliseconds are being stripped from datetime values when serializing:

return value.strftime('%Y-%m-%dT%H:%M:%SZ')
-->
return value.strftime('%Y-%m-%dT%H:%M:%S.%fZ')