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


class Ping(L3tIncidentCommand):

    descr = "Pings an incident"

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


Ping().main()
