Fix incorrect timestamp comment

Comment implied that the util would return a timestamp with
microseconds when it actually truncates microseconds.

Change-Id: I8a0645a0a781208f457cf4877f716a5778d27d42
This commit is contained in:
Kevin Benton 2016-09-05 03:56:16 -07:00
parent 7f0edcdb64
commit 020dd5d1d2

View File

@ -17,7 +17,7 @@
"""Utilities and helper functions."""
# ISO 8601 extended time format with microseconds
# ISO 8601 extended time format without microseconds
_ISO8601_TIME_FORMAT = '%Y-%m-%dT%H:%M:%S'