diff options
| author | Eric Day <eday@oddments.org> | 2010-08-09 07:31:41 -0700 |
|---|---|---|
| committer | Eric Day <eday@oddments.org> | 2010-08-09 07:31:41 -0700 |
| commit | 850acbdd9521cda8600235259fa68b8f2ab488ef (patch) | |
| tree | 6f532f2a938da01151b2bc2f573c8eccbc7cece3 | |
| parent | fd625a55c3725b5cff4449a687b0d54d0d49bd2e (diff) | |
| download | nova-850acbdd9521cda8600235259fa68b8f2ab488ef.tar.gz nova-850acbdd9521cda8600235259fa68b8f2ab488ef.tar.xz nova-850acbdd9521cda8600235259fa68b8f2ab488ef.zip | |
Fixed docstring format per Jay's review.
| -rw-r--r-- | nova/endpoint/rackspace.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), |
