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