From 682b33b411d7711db221bfe855a7a02bfd5cd5c5 Mon Sep 17 00:00:00 2001 From: Marius Pana Date: Mon, 27 Jun 2016 17:08:58 +0300 Subject: [PATCH] fixed typo in perfdata --- check_extended_dns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_extended_dns.py b/check_extended_dns.py index bab7ec6..04a5bf4 100755 --- a/check_extended_dns.py +++ b/check_extended_dns.py @@ -44,5 +44,5 @@ elif len(nscount) > nsargscount: There are more DNS servers from the WHOIS datbase than in your query." sys.exit(1) else: - print("0 Extended_DNS_Check nscount=" + str(nsargscount) + "; whoiscount=" + str(len(nscount)) + " OK - all DNS server match") + print("0 Extended_DNS_Check nscount=" + str(nsargscount) + " whoiscount=" + str(len(nscount)) + " OK - all DNS server match") sys.exit(0)