#!/usr/bin/python
from l3tlib.command import L3tIncidentCommand


class Accept(L3tIncidentCommand):

    descr = "Accepts an incident"

    def run(self):
        print self.l3t.accept(self.opts.incident, self.opts.bug)


Accept().main()
