Skip to content

Commit a28a0fd

Browse files
Flowdalicchewi
authored andcommitted
JobStatusDisplay: increase the default width to 100
Conservatively modernize the default width value from 80 to 100. Usually, I do not care much about the width, but the job status display holds more information these days, compared to the times where this value was set. Plus, self._isatty has the tendency to return false, even though portage is actually run within a tty. The prime examples causing this are systemd-run (and run0). Therefore, a conservatively increasing the value is sensible. Signed-off-by: Florian Schmaus <[email protected]> Closes: #1348 Signed-off-by: James Le Cuirot <[email protected]>
1 parent 6d1ee2c commit a28a0fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/_emerge/JobStatusDisplay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self, quiet=False, xterm_titles=True):
6565
if self._isatty:
6666
width = portage.output.get_term_size()[1]
6767
else:
68-
width = 80
68+
width = 100
6969
self._set_width(width)
7070

7171
def _set_width(self, width):

0 commit comments

Comments
 (0)