From 020dd5d1d289c4be14968f8a9aa08e9709a15b55 Mon Sep 17 00:00:00 2001 From: Kevin Benton Date: Mon, 5 Sep 2016 03:56:16 -0700 Subject: [PATCH] Fix incorrect timestamp comment Comment implied that the util would return a timestamp with microseconds when it actually truncates microseconds. Change-Id: I8a0645a0a781208f457cf4877f716a5778d27d42 --- oslo_versionedobjects/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_versionedobjects/_utils.py b/oslo_versionedobjects/_utils.py index 4d70dcd0..41eec0c3 100644 --- a/oslo_versionedobjects/_utils.py +++ b/oslo_versionedobjects/_utils.py @@ -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'