summaryrefslogtreecommitdiff
path: root/troveclient/shell.py
diff options
context:
space:
mode:
authorSushil Kumar <sushil.kumar2@globallogic.com>2014-01-10 11:22:12 +0000
committerSushil Kumar <sushil.kumar2@globallogic.com>2014-01-14 03:39:07 +0000
commitd56111cb07f19fb23979921199d6961c130d22b3 (patch)
treef61c0491bc731bd717bb6d87e449b8b186b726a4 /troveclient/shell.py
parent1a704bef5550e2045da6d5cc2481fda7b708f77a (diff)
downloadpython-troveclient-d56111cb07f19fb23979921199d6961c130d22b3.tar.gz
Fixed misspellings of common words
Fixed misspelling of common words found by the 'misspellings' tool. Change-Id: I8e03379f92b62fd4856bbc74b7e4641226a403d3 Closes-Bug: #1257531
Diffstat (limited to 'troveclient/shell.py')
-rw-r--r--troveclient/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/troveclient/shell.py b/troveclient/shell.py
index aba5218..59c74da 100644
--- a/troveclient/shell.py
+++ b/troveclient/shell.py
@@ -320,7 +320,7 @@ class OpenStackTroveShell(object):
def _find_actions(self, subparsers, actions_module):
for attr in (a for a in dir(actions_module) if a.startswith('do_')):
- # I prefer to be hypen-separated instead of underscores.
+ # I prefer to be hyphen-separated instead of underscores.
command = attr[3:].replace('_', '-')
callback = getattr(actions_module, attr)
desc = callback.__doc__ or ''