#!/usr/bin/python3 -s
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()
