If I include following line in my python source file
from scapy.all import *
I get this error
from scapy.all import * Impor
I think there was a change is scapy somewhere. I put the following code in my scapy projects so it remains compatible.
try: import scapy except ImportError: del scapy from scapy import all as scapy