diff options
-rw-r--r-- | pym/portage/output.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py index cd140f016..83ff3f1c2 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -194,7 +194,8 @@ def xtermTitleReset(): if prompt_command == "": default_xterm_title = "" elif prompt_command is not None: - os.system(prompt_command) + if dotitles and "TERM" in os.environ and sys.stderr.isatty(): + os.system(prompt_command) return else: pwd = os.getenv('PWD','') |