diff --git a/Authors b/Authors index 0fcb1fdf..8c167f7f 100644 --- a/Authors +++ b/Authors @@ -155,6 +155,7 @@ Nikolay Sokolov Nirmal Ranganathan Ollie Leahy Pádraig Brady +Paul McMillan Paul Voccio Peng Yong Philip Knouff diff --git a/nova/auth/ldapdriver.py b/nova/auth/ldapdriver.py index 91135f1c..3f36d97b 100644 --- a/nova/auth/ldapdriver.py +++ b/nova/auth/ldapdriver.py @@ -199,7 +199,7 @@ class LdapDriver(object): return False def __local_cache(key_fmt): # pylint: disable=E0213 - """Wrap function to cache it's result in self.__cache. + """Wrap function to cache its result in self.__cache. Works only with functions with one fixed argument. """ def do_wrap(fn): diff --git a/nova/tests/test_imagecache.py b/nova/tests/test_imagecache.py index 9cf40032..eaa05a4b 100644 --- a/nova/tests/test_imagecache.py +++ b/nova/tests/test_imagecache.py @@ -133,7 +133,7 @@ class ImageCacheManagerTestCase(test.TestCase): image_cache_manager = imagecache.ImageCacheManager() - # The argument here should be a context, but its mocked out + # The argument here should be a context, but it's mocked out image_cache_manager._list_running_instances(None) self.assertEqual(len(image_cache_manager.used_images), 2)