summaryrefslogtreecommitdiffstats
path: root/pym/portage/emaint/defaults.py
blob: d9d83ffbb11c534f6f313e362b385c344b356059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2005-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

# parser option data
CHECK = {"short": "-c", "long": "--check",
	"help": "Check for problems (a default option for most modules)",
	'status': "Checking %s for problems",
	'func': 'check'
	}

FIX = {"short": "-f", "long": "--fix",
	"help": "Attempt to fix problems (a default option for most modules)",
	'status': "Attempting to fix %s",
	'func': 'fix'
	}

# parser options
DEFAULT_OPTIONS = {'check': CHECK, 'fix': FIX}