Skip to content

Commit

Permalink
spellfix and tabfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast committed Jun 3, 2014
1 parent 604d34a commit 5ed3e27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pexpect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,9 +838,9 @@ def getecho(self):
on or False if echo is off. Child applications that are expecting you
to enter a password often set ECHO False. See waitnoecho().
Not supported platforms where ``isatty()`` returns False. '''
Not supported on platforms where ``isatty()`` returns False. '''

errmsg = 'getecho() may not be called on this platform'
errmsg = 'getecho() may not be called on this platform'

try:
attr = termios.tcgetattr(self.child_fd)
Expand Down Expand Up @@ -882,7 +882,7 @@ def setecho(self, state):
p.expect(['abcd'])
p.expect(['wxyz'])
Not supported platforms where ``isatty()`` returns False. '''
Not supported on platforms where ``isatty()`` returns False. '''

errmsg = 'setecho() may not be called on this platform'

Expand Down

0 comments on commit 5ed3e27

Please sign in to comment.