[compat] Fix wrong lines/columns order

stty size is rows x columns
totalwebcasting
Sergey M․ 9 years ago
parent 86be82610c
commit f2dbc54066

@ -434,7 +434,7 @@ else:
['stty', 'size'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = sp.communicate()
_columns, _lines = map(int, out.split())
_lines, _columns = map(int, out.split())
except Exception:
_columns, _lines = _terminal_size(*fallback)

Loading…
Cancel
Save