aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordol-sen <brian.dolbec@gmail.com>2011-07-13 15:37:00 -0700
committerdol-sen <brian.dolbec@gmail.com>2011-07-13 15:37:00 -0700
commitc639b2341b63d784840c039ea08ef5f08e21bde8 (patch)
tree1ac7001bdd4a9a9d7f3baed74daf52e06d044daf /pym/gentoolkit/revdep_rebuild/settings.py
parentfix the placement of the l.endswith('.a') in the if (diff)
downloadgentoolkit-c639b2341b63d784840c039ea08ef5f08e21bde8.tar.gz
gentoolkit-c639b2341b63d784840c039ea08ef5f08e21bde8.tar.bz2
gentoolkit-c639b2341b63d784840c039ea08ef5f08e21bde8.zip
partial pylint cleanup
Diffstat (limited to 'pym/gentoolkit/revdep_rebuild/settings.py')
-rw-r--r--pym/gentoolkit/revdep_rebuild/settings.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/pym/gentoolkit/revdep_rebuild/settings.py b/pym/gentoolkit/revdep_rebuild/settings.py
index 96aa491..b56f812 100644
--- a/pym/gentoolkit/revdep_rebuild/settings.py
+++ b/pym/gentoolkit/revdep_rebuild/settings.py
@@ -1,5 +1,7 @@
#!/usr/bin/python
+"""Default settings"""
+
import os
import sys
@@ -12,17 +14,18 @@ DEFAULTS = {
'PKG_DIR': os.path.join(portage.root, 'var/db/pkg/'),
'DEFAULT_TMP_DIR': '/tmp/revdep-rebuild', #cache default location
-
- 'USE_TMP_FILES': True, #if program should use temporary files from previous run
- 'CMD_MAX_ARGS': 1000, # number of maximum allowed files to be parsed at once
+ # number of maximum allowed files to be parsed at once
+ 'CMD_MAX_ARGS': 1000,
'PRETEND': False, #pretend only
'EXACT': False, #exact package version
- 'USE_TMP_FILES': True, #if program should use temporary files from previous run
+ #if program should use temporary files from previous run
+ 'USE_TMP_FILES': True,
- 'IS_DEV': True, #True for dev. version, False for stable
- #used when IS_DEV is True, False forces to call emerge with --pretend
- # can be set True from the cli with the --no-pretend option
+ #True for dev. version, False for stable
+ #used when IS_DEV is True, False forces to call emerge with --pretend
+ # can be set True from the cli with the --no-pretend option
+ 'IS_DEV': True,
'NO_PRETEND': False,
'VERBOSITY': 1,