diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-12-12 04:36:20 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-12-12 04:36:20 -0800 |
commit | 06ea3c8b3e8f9b6a6abd700000a16608f8a6db4f (patch) | |
tree | 783fc8e7f7526a8c2adea8368214c823be97f751 | |
parent | 95d07400e6ef8874f2a30056288b5f1821d89663 (diff) | |
download | portage-06ea3c8b3e8f9b6a6abd700000a16608f8a6db4f.tar.gz portage-06ea3c8b3e8f9b6a6abd700000a16608f8a6db4f.tar.bz2 portage-06ea3c8b3e8f9b6a6abd700000a16608f8a6db4f.zip |
xtermTitleReset: revert behavior for bug #348460
-rw-r--r-- | pym/portage/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/output.py b/pym/portage/output.py index a195db4fc..5e8b89e0e 100644 --- a/pym/portage/output.py +++ b/pym/portage/output.py @@ -268,7 +268,7 @@ default_xterm_title = None def xtermTitleReset(): global default_xterm_title if default_xterm_title is None: - prompt_command = os.environ.get('PROMPT_COMMAND', '') + prompt_command = os.environ.get('PROMPT_COMMAND') if prompt_command == "": default_xterm_title = "" elif prompt_command is not None: |