From 76ce4abd9eff822a01787addd6c3ef284cc0650c Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Thu, 28 Mar 2013 09:08:54 -0700 Subject: 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 --- nova/api/openstack/compute/contrib/simple_tenant_usage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/api') 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: -- cgit