From: Kevin Benton Date: Tue, 8 Dec 2015 22:16:49 +0000 (-0800) Subject: Fix timestamp in RBAC extension X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=6b43ef8ef721b27be99dc479a90e96ec08234469;p=openstack-build%2Fneutron-build.git Fix timestamp in RBAC extension The previous timestamp had an invalid TZ offset. This patch just sets it to UTC like the others. Change-Id: I58689d2ae88979a1119475267998c09e18915083 Closes-Bug: #1524081 --- diff --git a/neutron/extensions/rbac.py b/neutron/extensions/rbac.py index 75aa13530..7a1e9cdd2 100644 --- a/neutron/extensions/rbac.py +++ b/neutron/extensions/rbac.py @@ -97,7 +97,7 @@ class Rbac(extensions.ExtensionDescriptor): @classmethod def get_updated(cls): - return "2015-06-17T12:15:12-30:00" + return "2015-06-17T12:15:12-00:00" @classmethod def get_resources(cls):