summaryrefslogtreecommitdiff
path: root/blessings
diff options
context:
space:
mode:
Diffstat (limited to 'blessings')
-rw-r--r--blessings/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blessings/__init__.py b/blessings/__init__.py
index bee547e..8183265 100644
--- a/blessings/__init__.py
+++ b/blessings/__init__.py
@@ -220,7 +220,7 @@ class Terminal(object):
"""Return a tuple of (terminal height, terminal width),
using TIOCGWINSZ (Terminal I/O-Control: Get Window Size),
falling back to environment variables (LINES, COLUMNS),
- and 25 x 80 when otherwise unavailable."""
+ and 24 x 80 when otherwise unavailable."""
# tigetnum('lines') and tigetnum('cols') update only if we call
# setupterm() again.
for descriptor in self._init_descriptor, sys.__stdout__: