commit | a68176f803f56ead0e73ba8aac052e2886b6f2ef | [log] [tgz] |
---|---|---|
author | Rich Lane <rlane@bigswitch.com> | Fri Aug 09 17:41:05 2013 -0700 |
committer | Rich Lane <rlane@bigswitch.com> | Fri Aug 09 17:41:05 2013 -0700 |
tree | 1485cfa1a449c1c868ec0340e3c14d1ecbcc319e | |
parent | 2855ef7187e9b2ebd3d2b1b2240aebb277ee1bff [diff] [blame] |
wrap scapy with explicit imports pylint can't handle scapy's magical imports.
diff --git a/src/python/oftest/test_parse.py b/src/python/oftest/test_parse.py index 7143350..b6c8fce 100755 --- a/src/python/oftest/test_parse.py +++ b/src/python/oftest/test_parse.py
@@ -1,7 +1,7 @@ #!/usr/bin/env python import unittest import parse -import scapy.all as scapy +import packet as scapy class TestPacketToFlowMatchV3(unittest.TestCase): def test_tcp(self):