Browse Source

[compat] Fix wrong lines/columns order

stty size is rows x columns
totalwebcasting
Sergey M․ 9 years ago
parent
commit
f2dbc54066
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/compat.py

+ 1
- 1
youtube_dl/compat.py View File

@ -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