summaryrefslogtreecommitdiff
path: root/cmd2/utils.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-04-03 16:21:40 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-04-03 16:21:40 -0400
commit626a01a5fad70437b0e3f630b653ed9c8cf9c616 (patch)
treedb0827201bff299023bd9563041f13a2a39a2af4 /cmd2/utils.py
parentb146e0ca216b8451c2f4ebd0791dd3227cdca192 (diff)
downloadcmd2-git-626a01a5fad70437b0e3f630b653ed9c8cf9c616.tar.gz
Fixed minor grammatical error
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r--cmd2/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py
index 339d5194..d8ac513d 100644
--- a/cmd2/utils.py
+++ b/cmd2/utils.py
@@ -344,7 +344,7 @@ class StdSim(object):
self.buffer.byte_buf = bytearray()
def isatty(self) -> bool:
- """StdSim only be considered an interactive stream if `echo` is True and `inner_stream` is a tty."""
+ """StdSim only considered an interactive stream if `echo` is True and `inner_stream` is a tty."""
if self.echo:
return self.inner_stream.isatty()
else: