Fix misspellings in python designateclient

Fix misspellings detected by:
* pip install misspellings
* git ls-files | grep -v locale | misspellings -f -

Change-Id: Ib47acd8a5e4b1b733e1d75b8995a14620f2c9627
Closes-Bug: #1257295
This commit is contained in:
Shane Wang
2014-02-07 13:28:49 +08:00
parent cb4072cec2
commit 3f43747a72
2 changed files with 3 additions and 2 deletions

View File

@@ -69,7 +69,8 @@ class Command(CliffCommand):
data, data,
self.app.stdout, self.app.stdout,
parsed_args) parsed_args)
self.app.log.error('The requested action did not complete sucessfully') self.app.log.error('The requested action did not complete '
'successfully')
@abc.abstractmethod @abc.abstractmethod
def execute(self, parsed_args): def execute(self, parsed_args):

View File

@@ -34,4 +34,4 @@ class TouchDomainCommand(base.Command):
def execute(self, parsed_args): def execute(self, parsed_args):
self.client.touch.domain(parsed_args.domain_id) self.client.touch.domain(parsed_args.domain_id)
LOG.info('Domain touched sucessfully') LOG.info('Domain touched successfully')