1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Python plugins: fix style issues

This commit is contained in:
Lars Kruse 2020-08-25 16:58:50 +02:00
parent 3bc9396918
commit 40827a051a
2 changed files with 3 additions and 3 deletions

View file

@ -105,7 +105,7 @@ def main():
sys.exit(0)
else:
client_presence_re = re.compile("[\]] (.*?)\(\d+\)")
client_presence_re = re.compile(r"[\]] (.*?)\(\d+\)")
telnet = telnetlib.Telnet(host, port)
telnet.write(b"c2s:show()\n")
telnet_response = telnet.read_until(b"clients", 5)