import sys
from portage.const import COLOR_MAP_FILE
from portage.util import writemsg
-from portage.exception import PortageException, ParseError, PermissionDenied, FileNotFound
+from portage.exception import CommandNotFound, FileNotFound, \
+ ParseError, PermissionDenied, PortageException
havecolor=1
dotitles=1
"""
from portage.process import spawn
cmd = ["stty", "rows", str(lines), "columns", str(columns)]
- spawn(cmd, env=os.environ, fd_pipes={0:fd})
+ try:
+ spawn(cmd, env=os.environ, fd_pipes={0:fd})
+ except CommandNotFound:
+ writemsg("portage: stty: command not found\n", noiselevel=-1)
class EOutput(object):
"""