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


class ShortSleep(L3tIncidentCommand):

    descr = "Puts an incident to short sleep"

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


ShortSleep().main()
