From 0bec67c29ce5d965271440da41a0c4b4c2a1f0fb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 17 Oct 2019 15:39:12 -0700 Subject: [PATCH] double quotes to single quotes --- jc/parsers/netstat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 9291fc84..ed8c0ea7 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -185,11 +185,11 @@ def parse(data): for line in cleandata: if line.find('Active Internet connections (w/o servers)') == 0: - state.section = "client" + state.section = 'client' continue if line.find('Active Internet connections (only servers)') == 0: - state.section = "server" + state.section = 'server' continue if line.find('Proto') == 0: