From 484a1df32d5854312ef31c5b488fc07fff8428c4 Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Thu, 30 May 2013 08:32:42 +0400 Subject: Enable hacking H403 test H403 multi line docstring end on new line Change-Id: I33249651026b54ef346214965e909835288bb14e --- openstack/common/timeutils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openstack/common/timeutils.py') diff --git a/openstack/common/timeutils.py b/openstack/common/timeutils.py index 6094365..cb17487 100644 --- a/openstack/common/timeutils.py +++ b/openstack/common/timeutils.py @@ -141,7 +141,8 @@ def clear_time_override(): def marshall_now(now=None): """Make an rpc-safe datetime with microseconds. - Note: tzinfo is stripped, but not required for relative times.""" + Note: tzinfo is stripped, but not required for relative times. + """ if not now: now = utcnow() return dict(day=now.day, month=now.month, year=now.year, hour=now.hour, -- cgit