aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/open.py
blob: bd0e4faf725227a96c64e365e255e6d8db8e9e2b (plain) (blame)
1
2
3
4
5
6
"""Re-open a bug"""
from libbe import cmdutil
def execute(args):
    assert(len(args) == 1)
    bug = cmdutil.get_bug(args[0])
    bug.status = "open"