summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-06-16 17:15:15 +0000
committerGerrit Code Review <review@openstack.org>2014-06-16 17:15:15 +0000
commitf1a06ae26debd19d008b6c041919d5c2f9cf2b0b (patch)
tree8a6083a6b339ffced3ab311dcf5ba9ac286a18d7
parent4378c26b8eed103f70b94e2b09ec43de5b59af8c (diff)
parent9f331fb43954a7a88a9c8d8238e3fa2908b4bba9 (diff)
downloadcliff-f1a06ae26debd19d008b6c041919d5c2f9cf2b0b.tar.gz
Merge "fixed typos found by RETF rules"
-rw-r--r--cliff/commandmanager.py2
-rw-r--r--cliff/interactive.py2
-rw-r--r--docs/source/history.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/cliff/commandmanager.py b/cliff/commandmanager.py
index 2f83eb2..a6aef53 100644
--- a/cliff/commandmanager.py
+++ b/cliff/commandmanager.py
@@ -28,7 +28,7 @@ class CommandManager(object):
for the plugins to be loaded. For example,
``'cliff.formatter.list'``.
:param convert_underscores: Whether cliff should convert underscores to
- to spaces in entry_point commands.
+ spaces in entry_point commands.
"""
def __init__(self, namespace, convert_underscores=True):
self.commands = {}
diff --git a/cliff/interactive.py b/cliff/interactive.py
index e1bd930..e5cddb0 100644
--- a/cliff/interactive.py
+++ b/cliff/interactive.py
@@ -39,7 +39,7 @@ class InteractiveApp(cmd2.Cmd):
cmd2.Cmd.__init__(self, 'tab', stdin=stdin, stdout=stdout)
def default(self, line):
- # Tie in the the default command processor to
+ # Tie in the default command processor to
# dispatch commands known to the command manager.
# We send the message through our parent app,
# since it already has the logic for executing
diff --git a/docs/source/history.rst b/docs/source/history.rst
index 00da965..d1dfcf0 100644
--- a/docs/source/history.rst
+++ b/docs/source/history.rst
@@ -124,7 +124,7 @@ dev
0.7
- - Clean up interactive mode flag settting.
+ - Clean up interactive mode flag setting.
- Add support for Python 2.6, contributed by heavenshell.
- Fix multi-word commands in interactive mode.