Pylint fix for develop

This commit is contained in:
rallytime 2015-04-14 15:54:38 -06:00
parent e20e2ae26c
commit 3cc8788f7b

View file

@ -33,6 +33,8 @@ tcpdump "tcp[tcpflags] & tcp-syn != 0" and port 4505 and "tcp[tcpflags] & tcp-ac
For Port 4506
tcpdump "tcp[tcpflags] & tcp-syn != 0" and port 4506 and "tcp[tcpflags] & tcp-ack == 0"
'''
# Import Python Libs
from __future__ import absolute_import, print_function
import socket
from struct import unpack
@ -122,7 +124,7 @@ class PCAPParser(object):
'tcp': {}
}
(header, packet) = cap.next()
(header, packet) = cap.next() # pylint: disable=W1699
eth_length, eth_protocol = self.parse_ether(packet)