From 850acbdd9521cda8600235259fa68b8f2ab488ef Mon Sep 17 00:00:00 2001 From: Eric Day Date: Mon, 9 Aug 2010 07:31:41 -0700 Subject: Fixed docstring format per Jay's review. --- nova/endpoint/rackspace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/endpoint/rackspace.py b/nova/endpoint/rackspace.py index f6735a260..75b828e91 100644 --- a/nova/endpoint/rackspace.py +++ b/nova/endpoint/rackspace.py @@ -105,7 +105,7 @@ class CloudServerAPI(wsgi.Application): return json.dumps(value) def instance_details(self, inst): # pylint: disable-msg=R0201 - "Build the data structure to represent details for an instance." + """Build the data structure to represent details for an instance.""" return { "id": inst.get("instance_id", None), "imageId": inst.get("image_id", None), -- cgit