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


class Analyse(L3tIncidentCommand):

    descr = "Move incident back to the analysis state"

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


Analyse().main()
