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
This commit is contained in:
Dan Smith 2013-03-28 09:08:54 -07:00
parent 7f4589ea78
commit 76ce4abd9e
1 changed files with 1 additions and 1 deletions

View File

@ -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: