oops, fix one symbol missing

This commit is contained in:
Von Random 2016-10-23 12:09:06 +03:00
parent 24d9df968e
commit 16706a5d5f

View file

@ -30,7 +30,7 @@ class PluginThread(threading.Thread):
def main(self):
random.shuffle(self.hosts)
for host in self.hosts:
fping = 'fping -qct' + self.timeout + ' ' + host + ' &>/dev/null'
fping = 'fping -qc1t' + self.timeout + ' ' + host + ' &>/dev/null'
response = os.system(fping)
if response == 0:
self.format_status('on')