summaryrefslogtreecommitdiff
path: root/blessings
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2013-11-05 00:09:58 -0800
committerjquast <contact@jeffquast.com>2013-11-05 00:10:42 -0800
commitf86d9dbb794bad383b7cfb79989954d3aa0bdfc2 (patch)
tree96be6ad97f5bb2d250026f94a751b08023e0d77c /blessings
parent132db93c939b257cbd7a4642e0fb7d3256d968e1 (diff)
downloadblessings-f86d9dbb794bad383b7cfb79989954d3aa0bdfc2.tar.gz
docfix: 25 x 80 -> 24 x 80
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__: