From 3f43747a7296393506c78159ae4761d7f16ab20d Mon Sep 17 00:00:00 2001 From: Shane Wang Date: Fri, 7 Feb 2014 13:28:49 +0800 Subject: [PATCH] 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 --- designateclient/cli/base.py | 3 ++- designateclient/cli/touch.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/designateclient/cli/base.py b/designateclient/cli/base.py index 16673f1..d846432 100644 --- a/designateclient/cli/base.py +++ b/designateclient/cli/base.py @@ -69,7 +69,8 @@ class Command(CliffCommand): data, self.app.stdout, 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 def execute(self, parsed_args): diff --git a/designateclient/cli/touch.py b/designateclient/cli/touch.py index ff20516..299b779 100644 --- a/designateclient/cli/touch.py +++ b/designateclient/cli/touch.py @@ -34,4 +34,4 @@ class TouchDomainCommand(base.Command): def execute(self, parsed_args): self.client.touch.domain(parsed_args.domain_id) - LOG.info('Domain touched sucessfully') + LOG.info('Domain touched successfully')