summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/output.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py
index ff3e27171..9eae2ee87 100644
--- a/pym/portage/output.py
+++ b/pym/portage/output.py
@@ -382,7 +382,7 @@ class EOutput(object):
if columns <= 0:
columns = 80
# Adjust columns so that eend works properly on a standard BSD console.
- if os.environ.get("TERM") == "cons25":
+ if os.environ.get("TERM") in ("cons25", "dumb"):
columns = columns - 1
self.term_columns = columns