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


class Sleep(L3tIncidentCommand):

    descr = "Puts an incident to long sleep"

    def run(self):
        print self.l3t.sleep(self.opts.incident, self.opts.bug,
                             short=False)


Sleep().main()
