aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/close.py
blob: 11c5c7443d414d8bc6062eeeb308cb80b6745c8b (plain) (blame)
1
2
3
4
5
"""Close a bug"""
from libbe import cmdutil
def execute(args):
    assert(len(args) == 1)
    cmdutil.get_bug(args[0]).status = "closed"