1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

rewrite check for incomplete ARP entries

This commit is contained in:
Dave Marquardt
2023-01-06 10:12:50 -06:00
parent 02a7e5fd8a
commit 19a67daabf

View File

@ -229,7 +229,7 @@ def parse(
elif 'There' in splitline[0] and 'are' in splitline[1]:
continue
elif ('<incomplete>','(incomplete)') not in splitline:
elif '<incomplete>' not in splitline and '(incomplete)' not in splitline:
output_line = {
'name': splitline[0],
'address': splitline[1].lstrip('(').rstrip(')'),