Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/common/portstat_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def parse_portstat(content_lines):

results = {}
for line in content_lines[separation_line_number+1:reminder_line_number]:
if line == '\n': # skip empty line
if not line.strip(): # skip empty line or newline
continue
portstats = []
for pos in positions:
Expand Down