aboutsummaryrefslogblamecommitdiffstats
path: root/becommands/template
blob: 3c871e6ddb1d4481cf5a29ba2c6ec9d2c995d0bf (plain) (tree)




















                                                                                
"""Short description"""
from libbe import bugdir, cmdutil, names
import os
def execute(args):
    options, args = get_parser().parse_args(args)
    if len(args) > 0:
        raise cmdutil.UsageError


def get_parser():
    parser = cmdutil.CmdOptionParser("be list [options]")
#    parser.add_option("-w", "--wishlist", action="store_true", dest="wishlist",
#                      help="List bugs with 'wishlist' severity")
    return parser

longhelp="""
This is for the longwinded description
"""

def help():
    return get_parser().help_str() + longhelp