diff options
| author | Andrew Dunai <andunai@gmail.com> | 2018-12-08 22:52:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-08 22:52:56 +0200 |
| commit | bc65b88fae1745a90fd0874e130e96020946552d (patch) | |
| tree | b058f5be9325035b902fa97653010156fe46cb5d /urwid | |
| parent | 8fbc4537d581a85905f10e59daa8add6bdd1e8e6 (diff) | |
| parent | 86958fff7efcb4be89a499ebd55d3b908d323604 (diff) | |
| download | urwid-bc65b88fae1745a90fd0874e130e96020946552d.tar.gz | |
Merge pull request #326 from akosthekiss/patch-1
Fix misleading indentation in Screen._stop()
Diffstat (limited to 'urwid')
| -rw-r--r-- | urwid/raw_display.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/raw_display.py b/urwid/raw_display.py index e5275bd..25d6e09 100644 --- a/urwid/raw_display.py +++ b/urwid/raw_display.py @@ -247,7 +247,7 @@ class Screen(BaseScreen, RealTerminal): fd = self._term_input_file.fileno() if os.isatty(fd): termios.tcsetattr(fd, termios.TCSADRAIN, - self._old_termios_settings) + self._old_termios_settings) self._mouse_tracking(False) |
