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/scheduler/manager.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nova/scheduler/manager.py') diff --git a/nova/scheduler/manager.py b/nova/scheduler/manager.py index ca7cd956f..136d05582 100644 --- a/nova/scheduler/manager.py +++ b/nova/scheduler/manager.py @@ -306,8 +306,9 @@ class SchedulerManager(manager.Manager): return self.backdoor_port def select_hosts(self, context, request_spec, filter_properties): - """Returns host(s) best suited for this request_spec and - filter_properties""" + """Returns host(s) best suited for this request_spec + and filter_properties. + """ hosts = self.driver.select_hosts(context, request_spec, filter_properties) return jsonutils.to_primitive(hosts) -- cgit