globocom / alf

Python OAuth2 Client
MIT License
32 stars 12 forks source link

Fix storage and retrieval of date time format #8

Closed heliocorreia closed 7 years ago

heliocorreia commented 8 years ago

When a date time is converted to a string, the microseconds may be truncated if equals zero. To avoid that, the date time must use functions like strftime and strptime to store and retrieve the same date time format.

dmvieira commented 7 years ago

Thank you @heliocorreia