summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorDan Smith <danms@us.ibm.com>2013-03-28 09:08:54 -0700
committerDan Smith <danms@us.ibm.com>2013-03-28 09:08:54 -0700
commit76ce4abd9eff822a01787addd6c3ef284cc0650c (patch)
tree1c3269a200b407805c4096e0842013363830a9f1 /nova/api
parent7f4589ea7886559918b1c7e0a38384f3d710fca3 (diff)
downloadnova-76ce4abd9eff822a01787addd6c3ef284cc0650c.tar.gz
nova-76ce4abd9eff822a01787addd6c3ef284cc0650c.tar.xz
nova-76ce4abd9eff822a01787addd6c3ef284cc0650c.zip
Fix missing punctuation in docstring
This adds a period to the end of a docstring that was recently added and swiftly merged to fix a bug in -rc2. Change-Id: I399a72868911e03c6d69d9591ddcf7ee2d132fea
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/compute/contrib/simple_tenant_usage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/contrib/simple_tenant_usage.py b/nova/api/openstack/compute/contrib/simple_tenant_usage.py
index 0428c8a77..b653564c0 100644
--- a/nova/api/openstack/compute/contrib/simple_tenant_usage.py
+++ b/nova/api/openstack/compute/contrib/simple_tenant_usage.py
@@ -106,7 +106,7 @@ class SimpleTenantUsageController(object):
def _get_flavor(self, context, compute_api, instance, flavors_cache):
"""Get flavor information from the instance's system_metadata,
- allowing a fallback to lookup by-id for deleted instances only"""
+ allowing a fallback to lookup by-id for deleted instances only."""
try:
return instance_types.extract_instance_type(instance)
except KeyError: