# 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}