diff options
author | Javier Ramirez <jramirez@sombrerorojo.com> | 2016-06-29 15:04:50 +0200 |
---|---|---|
committer | Javier Ramirez <jramirez@sombrerorojo.com> | 2016-06-29 15:04:50 +0200 |
commit | cd9741b4026fe0485d2ebccb308ecd7a6ea94fce (patch) | |
tree | 88b2c0e195f8d4dfa7f8c60bbb13e3e756dea9ed /designate/manage/pool.py | |
parent | f3b7ac9a23cbd3301326554866ca7c8ddb6599da (diff) | |
download | designate-cd9741b4026fe0485d2ebccb308ecd7a6ea94fce.tar.gz |
Fixing several typos
Change-Id: I2b65bba52c2e3023e8542b0c95897428d0c3abef
Diffstat (limited to 'designate/manage/pool.py')
-rw-r--r-- | designate/manage/pool.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/designate/manage/pool.py b/designate/manage/pool.py index 9825e99a..68b60de7 100644 --- a/designate/manage/pool.py +++ b/designate/manage/pool.py @@ -46,7 +46,7 @@ class PoolCommands(base.Commands): try: pools = self.central_api.find_pools(self.context) except messaging.exceptions.MessagingTimeout: - LOG.critical(_LC("No response recieved from designate-central. " + LOG.critical(_LC("No response received from designate-central. " "Check it is running, and retry")) with open(file, 'w') as stream: yaml.dump( @@ -62,7 +62,7 @@ class PoolCommands(base.Commands): try: pools = self.central_api.find_pools(self.context) except messaging.exceptions.MessagingTimeout: - LOG.critical(_LC("No response recieved from designate-central. " + LOG.critical(_LC("No response received from designate-central. " "Check it is running, and retry")) r_pools = objects.PoolList() for pool in pools: @@ -91,7 +91,7 @@ class PoolCommands(base.Commands): default_flow_style=False)) except messaging.exceptions.MessagingTimeout: - LOG.critical(_LC("No response recieved from designate-central. " + LOG.critical(_LC("No response received from designate-central. " "Check it is running, and retry")) @base.args('--file', help='The path to the yaml file describing the pools', @@ -152,7 +152,7 @@ class PoolCommands(base.Commands): LOG.info(_LI('Creating new pool: %s'), pool) self.central_api.create_pool(self.context, pool) except messaging.exceptions.MessagingTimeout: - LOG.critical(_LC("No response recieved from designate-central." + LOG.critical(_LC("No response received from designate-central." " Check it is running, and retry")) if delete: @@ -176,7 +176,7 @@ class PoolCommands(base.Commands): self.central_api.delete_pool(self.context, p.id) except messaging.exceptions.MessagingTimeout: - LOG.critical(_LC("No response recieved from " + LOG.critical(_LC("No response received from " "designate-central. " "Check it is running, and retry")) |