#!/usr/bin/python3 -s
from l3tlib.command import L3tIncidentCommand


class Assign(L3tIncidentCommand):

    descr = "Assigns an incident"

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


Assign().main()
