def __init__(self, cmd, args): SubCommandBase.__init__( self, cmd, args, load_recipes=True, require_prefix=(args.sub_command != 'init'), )
def __init__(self, cmd, args): SubCommandBase.__init__( self, cmd, args, load_recipes=False, require_prefix=False, )
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser(parser, 'Git tool Commands:', Git.subcommands)
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser(parser, 'Recipe Commands:', Recipes.subcommands)
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser(parser, 'Prefix Commands:', Prefix.subcommands)
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser( parser, 'Prefix Commands:', Prefix.subcommands )
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser( parser, 'Recipe Commands:', Recipes.subcommands )
def setup_subparser(parser, cmd=None): """ Set up a subparser for a specific command """ return SubCommandBase.setup_subcommandparser( parser, 'Git tool Commands:', Git.subcommands )