From cacf0944cde5ae8d7d14402ff0976eaf357e75fb Mon Sep 17 00:00:00 2001 From: melissaml Date: Sat, 22 Dec 2018 03:39:51 +0800 Subject: [PATCH] fix typos in the docstring Change-Id: If401e701bf128c22df07a59b0bbca2f37a42cb71 --- hooks/charmhelpers/contrib/openstack/context.py | 2 +- hooks/charmhelpers/fetch/archiveurl.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/charmhelpers/contrib/openstack/context.py b/hooks/charmhelpers/contrib/openstack/context.py index c07b33d..5f20a60 100644 --- a/hooks/charmhelpers/contrib/openstack/context.py +++ b/hooks/charmhelpers/contrib/openstack/context.py @@ -1135,7 +1135,7 @@ class SubordinateConfigContext(OSContextGenerator): The subordinate interface allows subordinates to export their configuration requirements to the principle for multiple config - files and multiple serivces. Ie, a subordinate that has interfaces + files and multiple services. Ie, a subordinate that has interfaces to both glance and nova may export to following yaml blob as json:: glance: diff --git a/hooks/charmhelpers/fetch/archiveurl.py b/hooks/charmhelpers/fetch/archiveurl.py index b8e0943..0f61472 100644 --- a/hooks/charmhelpers/fetch/archiveurl.py +++ b/hooks/charmhelpers/fetch/archiveurl.py @@ -91,7 +91,7 @@ class ArchiveUrlFetchHandler(BaseFetchHandler): :param str source: URL pointing to an archive file. :param str dest: Local path location to download archive file to. """ - # propogate all exceptions + # propagate all exceptions # URLError, OSError, etc proto, netloc, path, params, query, fragment = urlparse(source) if proto in ('http', 'https'):