aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/gentoolkit/__init__.py')
-rw-r--r--pym/gentoolkit/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/gentoolkit/__init__.py b/pym/gentoolkit/__init__.py
index 9af78fc..ab9ce9d 100644
--- a/pym/gentoolkit/__init__.py
+++ b/pym/gentoolkit/__init__.py
@@ -10,14 +10,14 @@ import sys
CONFIG = {
# Color handling: -1: Use Portage settings, 0: Force off, 1: Force on
- 'color': -1,
+ "color": -1,
# Guess piping output:
- 'piping': False if sys.stdout.isatty() else True,
+ "piping": False if sys.stdout.isatty() else True,
# Set some defaults:
- 'quiet': False,
+ "quiet": False,
# verbose is True if not quiet and not piping
- 'verbose': True,
- 'debug': False
+ "verbose": True,
+ "debug": False,
}
# vim: set ts=8 sw=4 tw=79: