From 1bf87dda57b076e042301eeafa966283265d08cf Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 8 Jun 2013 13:18:51 +0200 Subject: Fix and enable H403 tests Multi-line doc-strings should end on a new, separate line. Change-Id: I4cf0cfe92b634ef77971863a4df41ef43531bc20 --- nova/objects/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nova/objects') diff --git a/nova/objects/base.py b/nova/objects/base.py index 625dd48d1..09d59b772 100644 --- a/nova/objects/base.py +++ b/nova/objects/base.py @@ -190,7 +190,8 @@ class NovaObject(object): @classmethod def obj_name(cls): """Return a canonical name for this object which will be used over - the wire for remote hydration.""" + the wire for remote hydration. + """ return cls.__name__ @classmethod -- cgit