1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

double quotes to single quotes

This commit is contained in:
Kelly Brazil
2019-10-17 15:39:12 -07:00
parent 8073d15fe1
commit 0bec67c29c

View File

@ -185,11 +185,11 @@ def parse(data):
for line in cleandata: for line in cleandata:
if line.find('Active Internet connections (w/o servers)') == 0: if line.find('Active Internet connections (w/o servers)') == 0:
state.section = "client" state.section = 'client'
continue continue
if line.find('Active Internet connections (only servers)') == 0: if line.find('Active Internet connections (only servers)') == 0:
state.section = "server" state.section = 'server'
continue continue
if line.find('Proto') == 0: if line.find('Proto') == 0: