diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-09 15:51:38 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-09 15:51:38 +0000 |
commit | 9e0a4ac927886a46749bc0f44a71953fbd2a686e (patch) | |
tree | d7d3c86f2022e766615381f004eb5214fe05199c | |
parent | 22fb49d5df042333fdefb911c75de11e15448be5 (diff) | |
download | portage-9e0a4ac927886a46749bc0f44a71953fbd2a686e.tar.gz portage-9e0a4ac927886a46749bc0f44a71953fbd2a686e.tar.bz2 portage-9e0a4ac927886a46749bc0f44a71953fbd2a686e.zip |
Fix typo s/upper/lower/.
svn path=/main/trunk/; revision=4636
-rwxr-xr-x | bin/repoman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index 91a1bd741..2f06a70b2 100755 --- a/bin/repoman +++ b/bin/repoman @@ -51,7 +51,7 @@ repoman_settings = portage.config(local_config=False, config_incrementals=portage_const.INCREMENTALS) repoman_settings.lock() -if repoman_settings.get("NOCOLOR", "").upper() in ("yes", "true") or \ +if repoman_settings.get("NOCOLOR", "").lower() in ("yes", "true") or \ not sys.stdout.isatty(): nocolor() |