diff options
Diffstat (limited to 'Lib/pty.py')
| -rw-r--r-- | Lib/pty.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pty.py b/Lib/pty.py index 1a41f1748a..8af32ba0f5 100644 --- a/Lib/pty.py +++ b/Lib/pty.py @@ -92,8 +92,8 @@ def slave_open(tty_name):      except ImportError:          return result      try: -       ioctl(result, I_PUSH, "ptem") -       ioctl(result, I_PUSH, "ldterm") +        ioctl(result, I_PUSH, "ptem") +        ioctl(result, I_PUSH, "ldterm")      except IOError:          pass      return result  | 
