Use newer location for iso8601 UTC

Newer versions have moved from iso8601.iso8601.Utc()
to just iso8601.UTC.

Change-Id: Ia6d65aafc57fb0abbbef0ef5987d79ddeb843344
Closes-Bug:#1715486
This commit is contained in:
zhangyangyang 2017-09-08 18:17:11 +08:00
parent b26e22499c
commit 7cf5f4de23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def datetime_or_none(dt):
# NOTE(danms): Legacy objects from sqlalchemy are stored in UTC,
# but are returned without a timezone attached.
# As a transitional aid, assume a tz-naive object is in UTC.
return dt.replace(tzinfo=iso8601.iso8601.Utc())
return dt.replace(tzinfo=iso8601.UTC)
else:
return dt
raise ValueError(_("A datetime.datetime is required here"))